function openWin( windowURL, windowName, windowFeatures ) { 
	return window.open( windowURL, windowName, windowFeatures ); 
} 

function showpic (file, page, width, height) {
    var newWindow;  newWindow=openWin(page+"_"+file+".htm","newWin"+width+height,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,resizable=yes,width="+width+",height="+height+",top=50,left=50");
    newWindow.focus();
}
function showpage (page, width, height, sscroll, ttop, lleft) {
    var newWindow;   newWindow=openWin(page,"","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars="+sscroll+",resizable=yes,width="+width+",height="+height+",top="+ttop+",left="+lleft);
    newWindow.focus();
}

function openpage (file, width, height) {
    var newWindow;
    newWindow=openWin(file,"newWin"+width+height,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+width+",height="+height+",top=50,left=50");
    newWindow.focus();
}
