var myWin = null;
function openWindow(u,n,w,h,p,s) {
	var posArr, pLeft, pTop;
	if (p == "random") {
		pTop  = (screen.height) ? Math.floor(Math.random()*((screen.height-h)-75)) : 100;
		pLeft = (screen.width)  ? Math.floor(Math.random()*(screen.width-w)) : 100;
	} else if (p == "center") {
		pTop  = (screen.height) ? (screen.height-h)/2 : 100;
		pLeft = (screen.width)  ? (screen.width-w)/2 : 100;
	} else if (p != "" && p != null) {
		posArr = p.split(',');
		pTop   = posArr[0];
		pLeft  = posArr[1];
	} else {
		pTop  = 10;
		pLeft = 10;
	}
	var settings = "width="+ w +",height=" + h + ",top="+ pTop +",left="+ pLeft +",scrollbars="+ s +",location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no";
	myWin = window.open(u,n,settings);
	myWin.focus();
}

function getCookie(name) {
	var x = 0;
	var nameOfCookie = name + "=";
	while (x <= document.cookie.length) {
		var y = x + nameOfCookie.length;
		if (document.cookie.substring(x,y) == nameOfCookie) {
			if ((endOfCookie = document.cookie.indexOf(";", y)) == -1) endOfCookie = document.cookie.length;
			return unescape(document.cookie.substring(y, endOfCookie));
		}
		x = document.cookie.indexOf(" ", x) + 1;
		if (x == 0) break;
	}
	return "";
}

//if (getCookie("popup1") != "done1") {
//	openWindow("/popup/popup.htm","popup_1","500","570","20,20","no");
//}

//if (getCookie("popup2") != "done2") {
//	openWindow("/popup/popup2.htm","popup_2","500","425","20,20","no");
//}

