// Print this window
function printWindow(){ version = parseInt(navigator.appVersion); if (version >= 4) window.print(); }
// Stay out of frames
var alertmsg = 'This Site Content Can NOT be Viewed in any other Framed Site'  + '\n'  + 'You will be Redirected to our Home Page not in Frames.' + '\n' + '\n' + 'Click "OK" to proceed.' + '\n';
if (parent.location.href == self.location.href) { } else { alert(alertmsg); window.top.location.href = 'http://www.SJPOA.com/Default.asp'; }
//New Windows
function makeNewWindow(windowLink,windowName){ var newWindow; newWindow=window.open("",windowName,"height=440,width=560,menubar=no,resizable=1,scrollbars=yes,left=100,top=0,screenX=100,screenY=0"); windowLink.target=windowName; newWindow.focus(); return false; }
function makeLGWindow(windowLink,windowName){ var newWindow; newWindow=window.open("",windowName,"height=540,width=660,menubar=no,resizable=1,scrollbars=yes,left=100,top=0,screenX=100,screenY=0"); windowLink.target=windowName; newWindow.focus(); return false; }
// Special Popup Windows
function OpenNewWindow(w,h,nav,loc,sts,menu,scroll,resize,name,url) { var windowProperties=''; 
if(nav==false) windowProperties+='toolbar=no,'; else windowProperties+='toolbar=yes,'; 
if(loc==false) windowProperties+='location=no,'; else windowProperties+='location=yes,'; 
if(sts==false) windowProperties+='status=no,'; else windowProperties+='status=yes,'; 
if(menu==false) windowProperties+='menubar=no,'; else windowProperties+='menubar=yes,'; 
if(scroll==false) windowProperties+='scrollbars=no,'; else windowProperties+='scrollbars=yes,'; 
if(resize==false) windowProperties+='resizable=no,'; else windowProperties+='resizable=yes,'; 
if(w!="") windowProperties+='width='+w+','; if(h!="") windowProperties+='height='+h; 
if(windowProperties!="") { if( windowProperties.charAt(windowProperties.length-1)==',') windowProperties=windowProperties.substring(0,windowProperties.length-1); } 
window.open(url,name,windowProperties);  return false;}

