// JavaScript Document



function showTip(Num,Mode)

{



  if (document.all) { //IS IE 4 or 5 (or 6 beta)



  	if(document.getElementById("TIP_"+Num).style.display == "none")

	{  

      document.getElementById("TIP_"+Num).style.display = "";

	}

	  else{

	  

	  document.getElementById("TIP_"+Num).style.display = "none";

	  }

	  

   }

}

function checkFields(form)

{

	if (document.all) { //IS IE 4 or 5 (or 6 beta)

		if(form.tbLastName.value == ''){

			alert('Please indicate your last name');

			return false;

		}

		if(form.tbFirstName.value == ''){

			alert('Please indicate your first name');

			return false;

		}

		if(form.tbEmail.value == ''){

			alert('Please indicate your email');

			return false;

		}

		else{

			if(form.tbEmail.value.indexOf('@')<=0) {

				alert('Your email is not correctly encoded.');

				return false;

			}

		}

		if(form.tbFeedBack.value == ''){

			alert('Please indicate your feedback');

			return false;

		}

	}

	return true;

}

function openWindow(url,pWidth, pHeight)

{

	var top=(screen.height-pHeight)/2;

	var left=(screen.width-pWidth)/2;

	window.open(url,"EurekaIts","width="+pWidth+",height="+pHeight+",toolbar=no,menubar=no,resizable=yes,location=no,directories=no,status=no,scrollbars=yes,copyhistory=no,left="+left+",top="+top);

}

function BuildMenu(xmlPath)

{		

	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="160" height="300" id="10" align="middle">');

	document.write('<param name="allowScriptAccess" value="sameDomain" />');

	document.write('<param name="movie" value="flshmenu/flshmenu.swf?xml='+xmlPath+'" />');

	document.write('<param name="menu" value="false" />');

	document.write('<param name="quality" value="high" />');

	document.write('<param name="scale" value="noscale" />');

	document.write('<param name="wmode" value="transparent" />');

	document.write('<param name="bgcolor" value="#ffffff" />');

	document.write('<embed src="flshmenu/flshmenu.swf?xml=');
	
	document.write(xmlPath);
	
	document.write('" menu="false" quality="high" scale="noscale" wmode="transparent" bgcolor="#ffffff" width="160" height="300" name="1" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');

	document.write('</object>');

}