function setCookie(c_name,value,expiredays){
    var exdate=new Date();
    exdate.setDate(exdate.getDate()+expiredays);
    document.cookie=c_name+ "=" +escape(value)+((expiredays==null) ? "" : ";expires="+exdate.toGMTString())+"; path=/";
}

window.onload=function(){
	if (document.getElementById('newsletter_button')!=null)
		document.getElementById('newsletter_button').onclick=function(){
			document.getElementById('newsletter_signup').submit();
		}

	if (document.getElementById('download_button')!=null)
		document.getElementById('download_button').onclick=function(){
			window.open('', 'windowName','dialog,modal,scrollbars=no,resizable=no,width=736,height=500,left=0,top=0');
			document.getElementById('download_form').submit();
		}

	if (document.getElementById('download_demo')!=null)
		document.getElementById('download_demo').onclick=function(){
			window.open('/download_demo','ddemo','width=733,height=600');
		}

	if (document.getElementById('score_button')!=null)
		document.getElementById('score_button').onclick=function(){
			document.getElementById('scoreform').submit();
		}

	if (document.getElementById('fortix_game_img_div_button_1')!=null)
		document.getElementById('fortix_game_img_div_button_1').onclick=function(){
			document.getElementById('paypal_form').submit();
		}

	if (document.getElementById('fortix_game_img_div_button_2')!=null)
		document.getElementById('fortix_game_img_div_button_2').onclick=function(){
			window.location='/10041421097521/fortix_demo_setup.exe';
		}

	if (document.getElementById('fortix_game_img_div_button_3')!=null)
		document.getElementById('fortix_game_img_div_button_3').onclick=function(){
			window.open('/swf/Fortix.swf','fortixgame','width=1024,height=768,location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no');
		}


}