/**
Made by Per Fredrik Plars 20051023

*/
function popImage(file,width,height) {
	var popup;

popup=window.open(file,"","width="+width+",height="+height);
	popup.moveTo((screen.width - width)/2, (screen.height - height)/2);
	popup.focus();
}
