function LaunchWindow(url, width, height, name, placex, placey)
{

window_style = "toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,scrollbars=yes,width=" + width + ",height=" + height + ",screenX=" + placex + ",screenY=" + placey+ ",top=" + placex + ",left=" + placey;

window.open(url, name, window_style);

}

//parameters to pass in HTML: URL, size (width and height), scroll (yes or no) and name of the window
                                                
//if(url == '') return;

