
document.write("<script type=\"text/javascript\" src=\"/js/jquery-1.3.2.js\"></script>");
document.write("<script type=\"text/javascript\" src=\"/js/scripts.js\"></script>");

//This function is taken from the existing site
function openwin(url,w,h,s,r) {
    var scrl; 
    var resze;
    
    if (s) { scrl="scrollbars=yes,"; w = w+16;} 
    else { scrl="scrollbars=no,"; }
    
    if (r) { resze = "resizable=yes,"; }
    else { resze="resizable=no,"; }
    
    if (!w) w = 350;
    if (!h) h = 270;

    stock = window.open(url,"_blank",scrl+resze+"width="+w+",height="+h+",screenX=200,screenY=50");
    stock.focus();
}
