
var url;
var caller;
var win;
var windowWidth;
var windowHeight;
var prepped = true;
var showLocation = "no";
var showStatus = "no";

function ResetWindowVariables() {
	prepped = true;
	showLocation = "no";
	showStatus = "no";
}

function OpenWindow(caller) {
	if ((win) && (win.open)) {
		win.close();
	}

	if (caller.toLowerCase() == "coupon") {
		url = "Html/Products/coupon_popup.html";
		windowWidth = 450;
		windowHeight = 410;
	}
	else if (caller.toLowerCase() == "recommend") {
		url = "http://www.yourmiconn.com/Html/Products/refer_popup.html";
		windowWidth = 385;
		windowHeight = 442;
	}
	else if (caller.toLowerCase() == "certificate") {
		url = "https://www.thawte.com/cgi/server/certdetails.exe?code=USYOUR14-2";
		windowWidth = 460;
		windowHeight = 400;
		showLocation = "yes";
		showStatus = "yes";
	}
	else if (caller.toLowerCase() == "bbbconfirm") {
		url = "http%3A%2F%2Fwww.bbbonline.org/r.cfm?ID=332000826";
		windowWidth = 450;
		windowHeight = 300;
		showLocation = "yes";
	}
	else if (caller.toLowerCase() == "help") {
		url = "http://www.yourmiconn.com/sandersforum/help/help_popup.html"
		windowWidth = 450;
		windowHeight = 410;
	}
	else{
		prepped = false;
	}

	if (prepped) {
		win = window.open(url,"","width="+windowWidth+",height="+windowHeight+",screenX=20,screenY=20,left=20,top=20,toolbar=no,menubar=no,scrollbars=yes,resizable=no,location="+showLocation+",directories=no,status="+showStatus+"");
	}

	ResetWindowVariables();
}
