// JavaScript Document
	var the_timeout;

	function placeLayer(){
	var width=document.body.offsetWidth;
	var table=780;
	var pos;
	pos=((width-table)/2)+162;
	if(width<=780)
	{
		pos=173;
	}
		document.getElementById("company").style.left=pos;
		document.getElementById("xaa").style.left=pos+62;
	}
	
	function executeHide(what)
	{
			subOpen=false;
			the_timeout = setTimeout("hideLayer('" + what + "');",500);
	}
	
	function hideLayer(what)
	{
		if(subOpen==false) {
			document.getElementById(what).style.visibility="hidden";
		}
	}
	
	function showLayer(what)
	{		
		subOpen=true;
		document.getElementById(what).style.visibility="visible";		
	}
	
	
	function hideAll()
	{
		document.getElementById('company').style.visibility="hidden";		
		document.getElementById('xaa').style.visibility="hidden";		
	}
	
	function validate()
	{
		var temp=document.mailingForm.email.value;
		if(temp.indexOf('.')<0 || temp.indexOf('@')<0)
		{
			alert("Το email που πληκτρολογήσατε δεν είναι έγκυρο")
		}
		else
		{
			document.mailingForm.submit();
		}
	}
	
	function popup(url,width,height)
	{
		window.open(url,'Image','width=' + width + ',height=' + height + ',statusbar=0,resizable=1,scrollbars=1');
	}