
var popimg;
var popimg_onready;
/**
 *	Opens a Popup Window in the Size of an Image
 */
function imgpopup( src, onready ) {
	popimg_onready = onready;
	popimg = new Image();
	popimg.src = src;
	imgpopup1();
}
function imgpopup1() {
	if( popimg.complete && popimg.width != 0 ){
		w = popimg.width;
		h = popimg.height;
		var xpos = ( screen.width - w ) / 2;
		var ypos = ( screen.height - h ) / 2;
		var win = window.open( "", "", "screenX=" + xpos + ",screenY=" + ypos +",width=" + w + ",height=" + h );
		win.document.writeln('<html><body style="margin:0;padding:0;"><img id="img1" onclick="window.close()" style="cursor:pointer;"></body></html>');
		win.document.getElementById("img1").src = popimg.src;
		if( popimg_onready ) {
			window.location.href = popimg_onready;
		}
	} else{
		var timer = setTimeout( "imgpopup1()", 25 );
	}
}
