function storeWin(SiteID) {
	window.open("store.asp?MallID=1&SiteID=" + SiteID, "store", "width=500,height=300,left=" + ((screen.width - 500) / 2) + ",top=" + ((screen.height - 300) / 2 - 40) + ",resizable=0,scrollbars=0,status=0").focus();
}

function itemPicWin(name) {
	window.open("item_pic.asp?Name=" + name, "item_pic", "width=450,height=450,left=" + ((screen.width - 450) / 2) + ",top=" + ((screen.height - 450) / 2 - 40) + ",resizable=0,scrollbars=0,status=0").focus();
}

function Back() {
	history.go(-1)
}

function familyPicWin(name) {
	window.open("family_pic.asp?Name=" + name, "item_pic", "width=450,height=450,left=" + ((screen.width - 450) / 2) + ",top=" + ((screen.height - 450) / 2 - 40) + ",resizable=0,scrollbars=0,status=0").focus;
}

function sendFriendEmailWin(MallID, WishListID) {
	window.open("../unsecure/send_friend_email.asp?MallID=" + MallID + "&WishListID=" + WishListID + "&FriendEmail=" + document.SendEmail.txtFriendEmail.value + "&FriendName=" +  document.SendEmail.txtFriendName.value, "send_email", "width=300,height=200,left=" + ((screen.width - 300) / 2) + ",top=" + ((screen.height - 200) / 2 - 40) + ",resizable=0,scrollbars=0,status=0").focus();		
}

function reviewOrderWin() {
	window.open("review_order.asp", "review_order", "width=680,height=450,left=" + ((screen.width - 680) / 2) + ",top=" + ((screen.height - 450) / 2 - 40) + ",resizable=0,scrollbars=1,status=0,menubar=1").focus();
}

function receiptWin() {
	window.open("receipt.asp", "receipt", "width=680,height=450,left=" + ((screen.width - 680) / 2) + ",top=" + ((screen.height - 450) / 2 - 40) + ",resizable=0,scrollbars=1,status=0,menubar=1").focus();
}

function termsWin() {
	window.open("../../shopper/unsecure/terms.asp", "terms", "width=400,height=280,left=" + ((screen.width - 400) / 2) + ",top=" + ((screen.height - 280) / 2 - 40) + ",resizable=0,scrollbars=0,status=0").focus();
}

function pricingWin() {
	window.open("../../merchant/unsecure/pricing.asp", "pricing", "width=750,height=500,left=" + ((screen.width - 750) / 2) + ",top=" + ((screen.height - 500) / 2 - 40) + ",resizable=0,scrollbars=0,status=0").focus();
}



var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		imgCache = new Image();

		imgCache.src = "../images/ecm/aom_learn_more_mouse_over.gif";
		imgCache.src = "../images/ecm/aom_learn_more_sign_up_mouse_over.gif";
		imgCache.src = "../images/ecm/aom_sign_up_now_mouse_over.gif";
		imgCache.src = "../images/ecm/aom_set_appointment_mouse_over.gif";
		
		preloadFlag = true;
	}
}
		
function changeImage(imgName, newSrc){
	if (document.images && (preloadFlag == true)){
		document[imgName].src = newSrc;
	}
}