<!--

	function get_forms_and_links(){

		var anchors = document.getElementsByTagName("A");
		var submit_buttons = document.getElementsByTagName("Input");
		for(var i=0 ; i<anchors.length; i++){
			
			anchor = anchors[i];
			anchor.setAttribute("onclick","window.onbeforeunload =null;");
		}
		for(var i=0 ; i<submit_buttons.length; i++){
			submit_button = submit_buttons[i];
			submit_button.setAttribute("onclick","window.onbeforeunload =null;");
		}
		

	}

	function bunload() {
		window.onbeforeunload = null;
		window.location = "http://www.2010depression.com/2010depressionExit.html";

		return "\nSTOP! Don't Want to Give Out Your Personal Information?\n\
Just Hit the 'Cancel' Button Below & I'll Still Give You \n\
the Entire 2010 Depression Report 100% Free! \n\
\n\
I honestly believe every American should have a copy of \n\
this reportand I want to make sure you read it... \n\
It is that important to your future. \n\
\n\
Just click 'Cancel' below and I'll send you straight to the\n\
2010 Depression Report. No downloads & you don't have to put\n\
your email address into the form!";

	}
	window.onbeforeunload = bunload;
	
 //-->


