AC_FL_RunContent = 0;
function submitData()
{
	document.getElementById("testez").submit();
}
function swapImage(obj)
{
	lastInd=(obj.src).lastIndexOf('/');
	imgSRC=(obj.src).substr(lastInd+1);
	lastInd=imgSRC.lastIndexOf('.');
	picName=imgSRC.substr(0,lastInd);
	if (picName==obj.id) {newImage=picName+"-over.jpg";}
	else {newImage=obj.id+".jpg";}
	obj.src="images/" + newImage;
}

function openPopUp(page)
{
	id='video'; //id of popup window
	h=480; //height of popup window
	w=720; //width of popup window
	video=window.open(page,id,'toolbar=no,menubar=no,location=no,resizable=yes,status=no,scrollbars=no,menubar=no,height='+h+',width='+w);
}