
function openIT(theURL,w,h,x,y, wname){
    var winl = (screen.width - w) / 2;
    var wint = (screen.height - h) / 2;
    winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable="no"'

    win = window.open(theURL, wname, winprops)
    if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
