function window_open(the_url,the_width,the_height,the_size,the_color)  {
    var my_tools = "scrollbars=1,toolbar=0,resizable=1,fullscreen=0,menubar=no,location=no";
    var tcolor = the_color.options[the_color.selectedIndex].value;
    var tsize  = the_size.options[the_size.selectedIndex].value;
    newWindow = window.open(the_url+"&color=" + tcolor + "&size=" + tsize,"newWindow","width="+ the_width + ",height="+ the_height + "," + my_tools); 
    newWindow.focus();
}
function window_open1(the_url,the_width,the_height,the_color)  {
    var my_tools = "scrollbars=1,toolbar=0,resizable=1,fullscreen=0,menubar=no,location=no";
    var tcolor = the_color.options[the_color.selectedIndex].value;
    newWindow = window.open(the_url+"&color=" + tcolor,"newWindow","width="+ the_width + ",height="+ the_height + "," + my_tools); 
    newWindow.focus();
}
function window_open2(the_url,the_width,the_height,the_size)  {
    var my_tools = "scrollbars=1,toolbar=0,resizable=1,fullscreen=0,menubar=no,location=no";
    var tsize  = the_size.options[the_size.selectedIndex].value;
    newWindow = window.open(the_url+"&size=" + tsize,"newWindow","width="+ the_width + ",height="+ the_height + "," + my_tools); 
    newWindow.focus();
}
function open_window(link,w,h) {
        var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=yes,scrollbars=yes";
        newWin = window.open(link,'newWin',win);
}