function openwindow (file,name,h,w,scroll,m,s)
{
  window.open (file,name,'scrollbars='+scroll+', height='+h+', menubar='+m+', resizable='+s+',width='+w);
}
function openwindow1 (file,name,h,w,scroll,m,s)
{
	fname = file.options[file.selectedIndex].value;
  window.open (fname,name,'scrollbars='+scroll+', height='+h+', menubar='+m+', resizable='+s+',width='+w);
}
