// open the window call with 3 parameters or it will default to def values
//winRef = window.open( URL, name [ , features  ] )
//toolbar=0|1  Specifies whether to display the toolbar in the new window.  
//location=0|1  Specifies whether to display the address line in the new window.  
//directories=0|1  Specifies whether to display the Netscape directory buttons.  
//status=0|1  Specifies whether to display the browser status bar.  
//menubar=0|1  Specifies whether to display the browser menu bar.  
//scrollbars=0|1  Specifies whether the new window should have scrollbars.  
//resizable=0|1  Specifies whether the new window is resizable.  
//width=pixels  Specifies the width of the new window.  
//height=pixels  Specifies the height of the new window.  
//top=pixels  Specifies the Y coordinate of the top left corner of the new window. (Not supported in version 3 browsers.)  
//left=pixels  Specifies the X coordinate of the top left corner of the new window. (Not supported in version 3 browsers.)  

// use <a href="javascript:window.close();">Close This Window</a> at the end of content page to allow easy close

function openwindow(name, url, width, height) {

if (name == undefined)
{
    name == 'NoName';
}
if (url == undefined)
{
   url = '/inc/part/nourl.html' ;
}
if (width == undefined)
{
    width = 200;
}
if (height == undefined)
{
    height = 200;
}
features = 'height='+height+', width='+width+', scrollbars=yes, toolbar=no, menubar=no, resizable=yes, location=no'

win3 = window.open(url, name, features); 

//if you need to write to this window then use
//win3.document.writeln(url+' - '+xurl); 
}



