// script for buttons and effects on pages



function go_to_signup(passed_thing){ // allows user to miss hyperlink and still get there as long as they are on the div
	document.getElementById("link_to_online_register").method = "get";
	document.getElementById("link_to_online_register").action = "zen_cart/index.php"; // determines which page we go to
	document.getElementById("link_to_online_register").submit();//submits the form as if it were php
}
function go_to_store(passed_thing){
	document.getElementById(passed_thing).method = "get";
	document.getElementById(passed_thing).action = "zen_cart/index.php";
	document.getElementById(passed_thing).submit();
}
