var preLoadMe = new Array('addToOrder','continueShopping','largeView','logo','proceedToCheckout','sideNav_checkout','sideNav_join','topNav_about','topNav_checkout','topnav_customerService','topNav_faq','topNav_news','topNav_search','topNav_stores','topNav_wholesale');


for (i=0; i<preLoadMe.length; i++) {
	var each = new Image();
	each.src="images/" + preLoadMe[i] + "_on.jpg";
}





function on(name) {
	document[name].src="images/" + name + "_on.jpg";
}

function off(name) {
	document[name].src="images/" + name + ".jpg";
}


showLargeView = function(whichID) {
	theURL = "largeView.php?itemID=" + whichID
	newWindow=window.open(theURL,'largeView','width=550,height=500,directories=no,location=no,menubar=no,resizable=no,scrollbars=yes,status=no,titlebar=yes,personalbar=no,toolbar=no');
	newWindow.focus();
	
}



popUp = function(whichPage) {
	newWindow=window.open((whichPage),'popup','width=550,height=375,directories=no,location=no,menubar=no,resizable=no,scrollbars=yes,status=no,titlebar=yes,personalbar=no,toolbar=no');
	newWindow.focus();
	
}


dcPopUp = function(whichPage) {
	newWindow=window.open((whichPage),'popup','width=405,height=210,directories=no,location=no,menubar=no,resizable=no,scrollbars=yes,status=no,titlebar=yes,personalbar=no,toolbar=no');
	newWindow.focus();
	
}





submitPayment = function() {
	document.goPay.description.value = document.goPay.description.value + "\n **message: " + document.goPay.addedNotes.value;
	document.goPay.submit();
}