// validation js
function redirect(form){
	if(form.storeURL.value=='x') { return false; }
	string='Are you sure you want to go to '+form.storeURL.value;
	if(confirm(string)) {} else { return false; }
	newURL="http://"+form.storeURL.value+"/index_local.php";
	location=newURL;
}