var windowW=230 // wide
var windowH=170 // high
var windowX = 260 // from left
var windowY = 100 // from top
var urlPop1 = "rollover-keywordhelp.htm"
var urlPop2 = "rollover-cardnumhelp.htm"
var title =  "What Is This?"
// set this to true if the popup should close
// upon leaving the launching page; else, false
var autoclose = true
// do not edit below this line
s = "width="+windowW+",height="+windowH;
var beIE = document.all?true:false
function openFrameless1() {
if (beIE) {
NFW = window.open("","popFrameless","fullscreen,"+s);
NFW.blur();
window.focus();
NFW.resizeTo(windowW,windowH);
NFW.moveTo(windowX,windowY);
var frameString=""+
"<html>"+
"<head>"+
"<title>"+title+"</title>"+
"</head>"+
"<frameset rows='*,0' framespacing=0 border=0 frameborder=0>"+
"<frame name='top' src='"+urlPop1+"' scrolling=no>"+
"<frame name='bottom' src='about:blank' scrolling='no'>"+
"</frameset>"+
"</html>";
NFW.document.open();
NFW.document.write(frameString);
NFW.document.close();
}
else {
NFW = window.open(urlPop,"popFrameless","scrollbars,"+s);
NFW.blur();
window.focus();
NFW.resizeTo(windowW,windowH);
NFW.moveTo(windowX,windowY);
}
NFW.focus();
if (autoclose) {
window.onunload = function(){NFW.close();}
   }
}

function openFrameless2() {
if (beIE) {
NFW2 = window.open("","popFrameless","fullscreen,"+s);
NFW2.blur();
window.focus();
NFW2.resizeTo(windowW,windowH);
NFW2.moveTo(windowX,windowY);
var frameString=""+
"<html>"+
"<head>"+
"<title>"+title+"</title>"+
"</head>"+
"<frameset rows='*,0' framespacing=0 border=0 frameborder=0>"+
"<frame name='top' src='"+urlPop2+"' scrolling=no>"+
"<frame name='bottom' src='about:blank' scrolling='no'>"+
"</frameset>"+
"</html>";
NFW2.document.open();
NFW2.document.write(frameString);
NFW2.document.close();
}
else {
NFW2 = window.open(urlPop,"popFrameless","scrollbars,"+s);
NFW2.blur();
window.focus();
NFW2.resizeTo(windowW,windowH);
NFW2.moveTo(windowX,windowY);
}
NFW2.focus();
if (autoclose) {
window.onunload = function(){NFW.close();}
   }
}

