function popUp(pPage,x,y) {
open(pPage,'winPopUp','resizable=no,scrollbars=no,width='+x+',height='+y);
}
var win = null;
function NewWindow( myurl, 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(myurl,myname,settings)
}

function NewWindowImg( picurl, width, height, title ) {
	w = (width != 800 ) ? width : 800;
	h = (height != 800) ? height : 600;
	title = ( typeof( title ) == 'undefined' ) ? 'Euroadvance' : title;
	leftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	topPosition = (screen.height) ? (screen.height-h)/2 : 0;
	//settings = 'innerHeight='+h+',innerWidth='+w+',top='+topPosition+',left='+leftPosition+',scrollbars=no,resizable=no';

	settings = 'height=' + h +',width=' + w + ',innerWidth=' + w + ',innerHeight=' + h + ',top=' + topPosition + ',left=' + leftPosition + ',scrollbars=0,resizable=0';
	
	win = window.open('','WindowImg',settings)
	win.document.open('text/html')
	win.document.write('<html style="oveflow: hidden"><title>'+title+'</title>');
	win.document.write('<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" style="oveflow: hidden">');
	win.document.write('<a href="javascript://" onClick="window.close()"><img src="'+picurl+'"  border="0"></a>');
	win.document.writeln('</body></html>');
	win.document.close();
}

function NewWindowImgScroll( picurl, width, height, scroll ) {
	w = (width != 800 ) ? width : 800;
	h = (height != 800) ? height : 600;
	title = ( typeof( title ) == 'undefined' ) ? 'Euroadvance' : title;
	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('','WindowImg',settings)
	win.document.open('text/html')
	win.document.write('<title>'+title+'</title>');
	win.document.write('<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
	win.document.write('<a href="javascript://" onClick="window.close()"><img src="'+picurl+'" border="0"></a>');
	win.document.writeln('</body>');
	win.document.close();
}