// JavaScript Document

function logIn(){
	OpenAjaxPostCmd('verify.php','phFloat','loginForm',' ','phFloat','POST','2');
}

function hideDiv(DIVID){
	if(document.getElementById) {
		var theDiv = document.getElementById(DIVID);
		theDiv.innerHTML = "";
		theDiv.style.visibility = "hidden";
	}
}


function closeFloat(){
	if(document.getElementById) {
		var theDiv = document.getElementById('phFloat');
		var floatDiv = document.getElementById('bgFloat');
		theDiv.innerHTML = "";
		theDiv.style.visibility = "hidden";
		floatDiv.style.visibility = "hidden";
	}
}


function switchPage(value){
	location.href = value;
	//ff = form.name;
	//OpenAjaxPostCmd('modules/fotoGal/actions.php','phFloat',ff,' ','phFloat','POST','2');
}


function setFieldValue(fieldId, valore){
	var campo = document.getElementById(fieldId);
	// var campo = eval(document+"."+ff+"."+field);
	campo.value = valore;
}



var  scroll = { 
  top: function(event) { new Effect.ScrollTo('Navigation'); }, 
  bottom: function(event) {  }  
}  
