/*
* Opens a window with a specified URL.
*/
function openPopupURL(url, windowName, status, toolbar, location, menubar, directories, resizable, scrollbar, height, width, top, left, focus) {
	myWindow = window.open(url, windowName, "status=" + status + ", toolbar=" + toolbar + ", location=" + location + ", menubar=" + menubar + ", directories=" + directories + ", resizable=" + resizable + ", scrollbar=" + scrollbar + ", height=" + height + ", width=" + width + ", top=" + top + ", left=" + left);
	if(focus == 0) {
		myWindow.blur();
		self.focus();
	}
}

/*
* Opens a window with specified content.
*/
function openPopupContent(content, windowName, status, toolbar, location, menubar, directories, resizable, scrollbar, height, width, top, left, focus) {
	myWindow = window.open("", windowName, "status=" + status + ", toolbar=" + toolbar + ", location=" + location + ", menubar=" + menubar + ", directories=" + directories + ", resizable=" + resizable + ", scrollbar=" + scrollbar + ", height=" + height + ", width=" + width + ", top=" + top + ", left=" + left);	
	myWindow.document.write(content);
	if(focus == 0) {
		myWindow.blur();
		self.focus();
	}
	myWindow.location.reload();
}

/*
* Closes a window created by openPopupURL(...) or openPopupContent(...).
*/
function closePopup() {
	if(myWindow.closed == false) {
		myWindow.close();
	} else {
		alert("myWindow already closed");
	}
}

function popHighRes(styleNo,gender) {
	highImg = window.open('/detail-highRes.asp?styleNo='+ styleNo+'&gender='+gender, 'highImg', 'width=370,height=530,toolbar=no,directories=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,left=150,top=10');
}

function popWishList(styleNo) {
	wishList = window.open(styleNo, 'wishList', 'width=618,height=500,toolbar=no,directories=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,left=150,top=10');
}

function popSTF(styleNo) {
	highImg = window.open('/detail-STF.asp?styleNo='+ styleNo, 'STF', 'width=600,height=420,toolbar=no,directories=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,left=150,top=10');
}
function popSTF2(styleNo,detailImg) {
	highImg = window.open('/detail-STF.asp?styleNo='+ styleNo+'&detailToUse='+detailImg, 'STF', 'width=600,height=420,toolbar=no,directories=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,left=150,top=10');
}

function popChart() {
	highImg = window.open('/hat-chart.asp', 'HC', 'width=565,height=828,toolbar=no,directories=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,left=5,top=5');
}


function popSizing() {
	highImg = window.open('/sizing-chart.asp', 'HC', 'width=430,height=680,toolbar=no,directories=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,left=5,top=5');
}