function openNewWindow(URL, name, top, left, width, height) {
    if (name = ''){ name = '_blank'; }
	newwindow = window.open(URL, name, 
		'top=' + top + 
		',left=' + left + 
		',width=' + width + 
		',height=' + height + 
		',scrollbars=0,menubar=0,status=0,resizable=0,toolbar=0,directories=0,location=0'); 
	return newwindow; 
}

function openNewWindowNormal(URL, name, top, left, width, height) {
    if (name = ''){ name = '_blank'; }
	newwindow = window.open(URL, name, 
		'top=' + top + 
		',left=' + left + 
		',width=' + width + 
		',height=' + height + 
		',scrollbars=2,menubar=0,status=1,resizable=1,toolbar=0,directories=0,location=0'); 
	return newwindow; 
}

function openImageWindow(URL, title, width, height){
    newwindow = openNewWindow('', '', 0, 0, width, height);
    newwindow.document.writeln("<html><head><title>" + title + "</title></head><body style='padding: 0px; margin:0px; overflow:hidden;'>");
    newwindow.document.writeln("<img src='" + URL + "' width='" + width + "' height='" + height + "' alt='" + title + "'>");

    newwindow.document.writeln("</body></html>");
    newwindow.document.close();
}


