<!--
// msgWinNC() opens a chromeless message window using URL and dimensions you provide
function msgWinNC(msghrefNC, x, y) {
  var WinNC = window.open(msghrefNC,"msgWinNC",'width=' + x + ',height=' + y +
    ',innerWidth=' + x + ',innerHeight=' + y +  
    ',left=0,top=0,scrollbars=no,resizable=no,menubar=no,status=no,toolbar=no,location=no,directories=no' );
  WinNC.moveTo(250,50);
}
// end of msgWinNC


<!-- 
// cardWinRS() opens a resizable and scrollable chromeless window using url and dimensions you provide
function cardWinRS(cardhrefRS, x, y) {
  var WinRS = window.open(cardhrefRS,"cardWinRS",'width=' + x + ',height=' + y +
    ',left=0,top=0,scrollbars=yes,resizable=yes,menubar=no,status=no,toolbar=no,location=no,directories=no' );
}
// end of cardWinRS


<!--
// chatWinRS() opens a resizable and scrollable chromeless chat window using url and dimensions you provide
function chatWinRS(chathrefRS, x, y) {
  var WinRS = window.open(chathrefRS,"chatWinRS",'width=' + x + ',height=' + y +
    ',innerWidth=' + x + ',innerHeight=' + y +  
    ',left=0,top=0,scrollbars=yes,resizable=yes,menubar=no,status=no,toolbar=no,location=no,directories=no' );
  WinRS.moveTo(30,30);
}
// end of chatWinRS


// helpWinSO() opens a scrolling but otherwise chromeless window using url and dimensions you provide
function helpWinSO(helphrefSO, x, y) {
  var WinSO = window.open(helphrefSO,"helpWinSO",'width=' + x + ',height=' +  y + 
    ',innerWidth=' + x + ',innerHeight=' + y +  
    ',left=0,top=0,scrollbars=yes,resizable=no,menubar=no,status=no,toolbar=no,location=no,directories=no' );
  WinSO.moveTo(300,35);
}
// end of helpWinSO


<!--
// holioWinRS() opens a resizable and scrollable chromeless chat window using url and dimensions you provide
function holioWinRS(holiohrefRS, x, y) {
  var WinRS = window.open(holiohrefRS,"holioWinRS",'width=' + x + ',height=' + y +
    ',innerWidth=' + x + ',innerHeight=' + y +  
    ',left=0,top=0,scrollbars=yes,resizable=yes,menubar=no,status=no,toolbar=no,location=no,directories=no' );
  WinRS.moveTo(30,30);
}
// end of holioWinRS


<!--
// vidWinRS() opens a resizable and scrollable chromeless chat window using url and dimensions you provide
function vidWinRS(vidhrefRS, x, y) {
  var WinRS = window.open(vidhrefRS,"vidWinRS",'width=' + x + ',height=' + y +
    ',innerWidth=' + x + ',innerHeight=' + y +  
    ',left=0,top=0,scrollbars=yes,resizable=yes,menubar=no,status=no,toolbar=no,location=no,directories=no' );
  WinRS.moveTo(30,30);
}
// end of vidWinRS


<!--
// picWinNC() opens a chromeless window using url and dimensions you provide
function picWinNC(pixhrefNC, x, y) {
  var WinNC = window.open(pixhrefNC,"picWinNC",'width=' + x + ',height=' + y +
    ',left=0,top=0,scrollbars=no,resizable=no,menubar=no,status=no,toolbar=no,location=no,directories=no' );
}
// end of picWinNC


// picWinSO() opens a scrolling but otherwise chromeless window using url and dimensions you provide
function picWinSO(pixhrefSO, x, y) {
	 var WinSO = window.open(pixhrefSO,"picWinSO",'width=' + x + ',height=' +  y + 
       ',left=0,top=0,scrollbars=yes,resizable=no,menubar=no,status=no,toolbar=no,location=no,directories=no' );
     WinSO.moveTo(0,0);
}
// end of picWinSO


// picWinRS() opens a resizable and scrollable chromeless window using url and dimensions you provide
function picWinRS(pixhrefRS, x, y) {
	 var WinRS = window.open(pixhrefRS,"picWinRS",'width=' + x + ',height=' + y + 
       ',left=0,top=0,scrollbars=yes,resizable=yes,menubar=no,status=no,toolbar=no,location=no,directories=no' );
}
// end of picWinRS


// code to add to the anchor links is as follows...
// onClick="picWin(this.href,'width','height');return false;"
// ADD 2 letter code after picWin and that's all there is.
// picWin may be MsgWin or chatWin or helpWin etc
// -->


// vidWindow() opens a chromeless window for QuickTime video players
function vidWindow(cliphref) {
var lwin = (screen.width - 325) / 2;
var twin = (screen.height - 260) / 2;
winspecs = 'height=260,width=325,top='+twin+',left='+lwin+',scrollbars=no,resizable=no'
winname = 'vidPops'
win = window.open(cliphref, winname, winspecs)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
} // end of vidWindow()

// storyWindow() opens a chromeless scrollable window for reading stories
function storyWindow(storyhref) {
var lwin = (screen.width - 580) / 2;
var twin = (screen.height - 500) / 2;
winspecs = 'height=500,width=580,top='+twin+',left='+lwin+',scrollbars=yes,resizable=yes'
winname = 'storyPops'
win = window.open(storyhref, winname, winspecs)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
} // end of storyWindow()

// siteWinCH() opens a resizable and scrollable chromed window using url and dimensions you provide
function siteWinCH(sitehrefCH, x, y) {
	 var WinCH = window.open(sitehrefCH,"siteWinCH",'width=' + x + ',height=' + y + 
       ',left=0,top=0,scrollbars=yes,resizable=yes,menubar=yes,status=yes,toolbar=yes,location=yes,directories=yes' );
}
// end of siteWinCH

