function openWindow ( URL, name, top, left, height, width ) 
{
    var rp = window.open(URL, name, "'top = " + top + ", left = " + left + ", height = " + height + ", width = " + width + ", location = no, scrollbars = yes, resizable = yes, status = no, menubar = no, toolbar = no'");     
    rp.focus(); 
}