function toggleInternational() {
	if(document.getElementById("CountryRow").style.display=="none") {
		document.getElementById("CountryRow").style.display="";
		document.getElementById("Country").value="";
		document.getElementById("StateRow").style.display="";
		document.getElementById("StateSelectRow").style.display="none";
		document.getElementById("InternationalButton").value = "U.S. Address";
		document.getElementById("Country").focus();
	}
	else{
		document.getElementById("Country").value="USA";
		document.getElementById("CountryRow").style.display="none";
		document.getElementById("StateRow").style.display="none";
		document.getElementById("StateSelectRow").style.display="";
		document.getElementById("InternationalButton").value = "International Address";
		document.getElementById("Street1").focus();
	}
}
function initInternational() {
	if(document.getElementById("Country").value!="USA") {
		document.getElementById("CountryRow").style.display="";
		document.getElementById("StateRow").style.display="";
		document.getElementById("StateSelectRow").style.display="none";
		document.getElementById("InternationalButton").value = "U.S. Address";
		document.getElementById("Country").focus();
	}
}
function OpenSmallWindow(URL) {
	SmallWindow=window.open(URL,"SmallWindow","toolbar=no, directories=no, location=no, status=no, height=500px, width=600px, menubar=no, resizable=yes, scrollbars=yes");
   	if (window.focus) {SmallWindow.focus();}
}
function EmailPassword() {
	EmailPasswordWindow=window.open("http://www.certifiedsuccess.com/password.php","EmailPasswordWindow","toolbar=no, directories=no, location=no, status=no, menubar=no, resizable=no, scrollbars=no");
   	if (window.focus) {EmailPasswordWindow.focus();}
}
function printPage(URL) {
	PrinterFriendlyWindow=window.open(URL,"PrinterFriendlyWindow","toolbar=yes, directories=no, location=yes, status=yes, menubar=yes, resizable=yes, scrollbars=yes");
	if (window.focus) {PrinterFriendlyWindow.focus();}
}
function bookmark(url, description) {
	if (navigator.appName=='Microsoft Internet Explorer') {
		window.external.AddFavorite(url, description);
	}
}