// JavaScript Document

function getWork(id, start){
	location.href = '?work='+id+'&start='+start;
}

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 refreshCheckOut(){
	OpenAjaxPostCmd('http://www.blitz-shop.com/includes/actions/commerce.php?','MainFrame','opt=refreshCheckOut','','MainFrame','GET',0)
}

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

