<!--
// 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


<!--
// 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


<!--
// 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


// 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



// code to add to the anchor links is as follows...
// onClick="siteWinCH(this.href,'width','height');return false;"
// edit information as needed and that's all there is.
// -->
