<!--
function click()
	{
		if (event.button==2)
		{
		alert('Copyright © 2004-2006 Task Transactions Limited \n\nAll Rights Reserved - Worldwide.');
		}
	}
		document.onmousedown=click
//-->

<!--
function validate()
		{
			var digits="0123456789";
			var temp;

			if (document.uslform.name.value == "")
			{
				alert("Please enter your Name !");
				uslform.name.focus();
			        uslform.name.select();
				return (false);
			}

			if (document.uslform.company.value == "")
			{
				alert("Please enter your Company Name !");
				uslform.company.focus();
			        uslform.company.select();
				return (false);
			}
			
			if (document.uslform.email.value == "")
			{
				alert("Please enter your Email Address !");
				uslform.email.focus();
			        uslform.email.select();
				return (false);
			}
			
			if (document.uslform.email.value.indexOf("@") == -1)
			{
				alert("Please enter a proper Email Address !");
				uslform.email.focus();
			        uslform.email.select();
				return (false);
			}
			
				if (document.uslform.phone.value == "")
			{
				alert("Please enter your Phone Number !");
				uslform.phone.focus();
			        uslform.phone.select();
				return (false);
			}		
						
				if (document.uslform.country.value == "")
			{
				alert("Please enter your Country !");
				uslform.country.focus();
			        uslform.country.select();
				return (false);
			}		
			
			return (true);
		}
//-->

<!--
function desc(name){
  var hig = window.screen.height 
  var wid = window.screen.width    
  game=window.open (name,"gui","height= " + hig + ",width= " + wid + ",resizable=no,location=no,status=no,menubar=no,scrollbars=yes,toolbar=no,screenX=0,screenY=0,left=0,top=0")
  }	
//-->

		
<!--
function imgswap(primary, imgname1, secondary, imgname2)
{  
   eval("document." + primary + ".src = '" + imgname1 + "'");
   eval("document." + secondary + ".src = '" + imgname2 + "'");
}
//-->

