//------------------------------------------------
// jump to locations for subscribe, signup, login on top nav level2
// USED ONLY FOR MULTI LANG PACK, discontinued July 2009
/*
function jump(type) {
 	 var group = "";
	 var language = document.form1.lang.value;	 
	 
	 if (language == 'it') { group = '-1'; }
	 else if (language == 'fr') { group = '-4'; }
	 else if (language == 'de') { group = '-2'; }
	 else if (language == 'es') { group = '-3';  }

	 // if (type=='login') { window.location = "http://archeryfocus.com/amember/login.php?lang=" + language; }	 
	 if (type=='login' && language=='en') { window.location = "http://archeryfocus.com/magviewer/index.htm"; }	
	 else if (type=='login') { window.location = "http://archeryfocus.com/services/magazine/files/" + language + "/index.htm"; }
	 
	 // special temp for es and fr subscriptions
	 else if (type=='signup' && language=='es') { alert('This translation will start with the next issue.\n\nYou can subscribe when the issue is available.\n\nPlease check back later.');  }	
	 else if (type=='signup' && language=='fr') { alert('This translation will start with the next issue.\n\nYou can subscribe when the issue is available.\n\nPlease check back later.');  }	 
	 // end special temp... 
	 
	 else if (type=='signup') { window.location = "http://archeryfocus.com/amember/signup.php?lang=" + language + "&price_group=" + group;  }	
	 else if (type=='sample' && language=='en') { window.location = "http://archeryfocus.com/services/sampleissues/en/index.htm"; }
	 
	 else if (type=='sample' && language!='en') {
		 var url = "http://archeryfocus.com/services/sampleissues/" + language + "/sample_issue.pdf";
		 win = window.open(url,"win","toolbar=0,status=0,menubar=0,scrollbars=1,resizable,width=700,height=600,top=100,left=100");   
		 win.focus;		
	 }  
}
*/

function jump(type) {
	 if (type=='signup') { window.location = "http://archeryfocus.com/amember/signup.php";  }	
	 else if (type=='sample') { window.location = "http://archeryfocus.com/services/sampleissues/en/index.htm"; }
	 else if (type=='login') { window.location = "http://archeryfocus.com/magviewer/index.htm"; }
}


//------------------------------------------------------
// Popup for advertizering policy page 
function winPolicy() {
	policy = window.open('https://archeryfocus.com/services/policy_privacy.htm','','scrollbars=1,screenX=100,screenY=100,height=360,width=450,resizable=yes');
	policy.focus();
}

//------------------------------------------------------
// Comfirm alert for form submissions 	
function sendForm() {
	return confirm("Is all the information correct?\n Hit \"OK\" to submit or \"Cancel\" to make changes.");
}
//------------------------------------------------------
