


function show_option(that, w, h) {
	var buf = '';
	buf += '<html><head><title>'+that.innerHTML+'</title></head>';
	buf += '<body style="margin:0px; padding:0px;">';
	buf += '<img src="'+that.href+'" width="'+w+'" height="'+h+'" border="0">';
	buf += '</body></html>';

	var win = window.open('blank.html', 'show_option', 'width='+w+',height='+h+',left=300,top=300');
	var posX = (screen.availWidth - w)/2;
	var posY = (screen.availHeight-h)/2;
	win.moveTo(posX, posY);

	win.document.open('text/html');
	win.document.write(buf);
	win.document.close();
}

