function loadPage(urlRequested, method, container, containerType, loaderID, whatToEval)
{
	ajax_slider=new ajax(urlRequested, method, container, containerType, loaderID, whatToEval);
	ajax_slider.sendRequest();
}

function setVisibility(visibility, id)
{
	el = document.getElementById(id).style;	
	el.visibility = visibility;
}

function change_style(id, class_name)
{
	document.getElementById(id).className=class_name;
}