function clickFix()
{
   document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0" id="atop_01" width="950" height="281">\n');
   document.write('<param name="movie" value="assets/flash/atop.swf" />\n');
   document.write('<param value="transparent" name="wmode"/>\n');
   document.write('<param name="quality" value="high" />\n');
   document.write('<embed src="assets/flash/atop.swf" menu="false" wmode="transparent" quality="high" scale="exactfit" bgcolor="#ffffff" width="950" height="281"></embed>\n');
   document.write('</object>\n');
}

function formSub(rwForm) 
{
	signup_msg = new Array(/^[a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.([a-zA-Z]{2,4})$/,'Please enter a valid e-mail address to sign up for the atop newsletter.');

	var result = signup_msg[0].test(document.forms["rwForm"]["signup"].value);
 	if(result == false) 
 	{ 
 		document.forms["rwForm"]["signup"].focus;
 		alert(signup_msg[1])
 		return false; 
 	}	
	return true; 	
}

function countClick(type,name,image)
{
	img = document.getElementById(image);
  img.src = 'clickcounter.php?type='+type+'&url='+name;
}