function popUp(src,width,height){
	myWindow=window.open('','popUp','width='+width+',height='+height);
	myWindow.document.write('<html><body style="background-color:#FBE4B8;margin:0;">');
	myWindow.document.write('<img src="'+src+'" />');
	myWindow.document.write('</body></html>');
	myWindow.focus()
}