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

// 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=yes,location=no,directories=no' );
}
// end of cardWinRS


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


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


// vidWindow2() opens a chromeless except for status bar window for QuickTime video players
function vidWindow2(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,status=yes'
winname = 'vidPops'
win = window.open(cliphref, winname, winspecs)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
} // end of vidWindow()


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