
var hw = ""
var nhw = ""


// this is for isapi/xsl links to the SYI redesign help windows (the little yellow ones)
function openHelpWindow(path) {
	hw = window.open(path, "helpwin", "height=420,width=350,status=no,toolbar=no,menubar=no,location=no,resizable=yes,titlebar=no");
	hw.focus();
	return false;
}

// this is for links FROM the SYI redesign help windows (both HTML and ISAPI) to other ebay or external pages.
function openNonHelpWindow(path) {
	nhw = window.open(path, "third", "height=400,width=600,scrollbars=yes,status=yes,toolbar=yes,menubar=yes,location=yes,resizable=yes,titlebar=yes");
	nhw.focus();
	return false;
}