<!-- //
// JavaScript Document
function OpenWindow(url, window_name, window_width, window_height, window_x, window_y, scrollbars)
{
new_window = window.open(url, window_name,'resizable=yes, width=' + window_width +', height=' + window_height +', left=' + window_x +', top=' + window_y +', screenX=' + window_x +', screenY=' + window_y +', scrollbars=' + scrollbars +', status=no, toolbar=no, menubar=no, location=no, directories=no');
new_window.focus();
}
//-->
