var win = null;
function NewWindow( mypage, myname, w, h, scroll ) {
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable=no'
	win = window.open( mypage, myname, settings)
}

function NewWindowImg( picurl, width, height) {
	w = (width != 800 ) ? width : 800;
	h = (height != 800) ? height : 600;
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,resizable=no';

	win = window.open('','WindowImg',settings)
	win.document.open('text/html')
	win.document.write('<title></title>');
	win.document.write('<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
	win.document.write('<a href="" onClick="window.close()"><img src="'+picurl+'" width="'+width+'" height="'+height+'" border="0"></a>');
	win.document.writeln('</body>');
	win.document.close();
}
