function showBiggerImage(auctiontitle,url)
{
	var imageWindow = window.open("","","scrollbars=yes,resizable=no");
	
	imageWindow.document.writeln("<html><head><style>.inputButton{color : #ffffff;font-family : verdana, arial, helvetica;font-size: 12px;font-weight : 400;text-decoration:none;	background-color: #484848;	border: #000000 solid 1px; 	padding : 2px;} </style><title>"+auctiontitle+"<\/title>\n");
	imageWindow.document.writeln("<SCRIPT LANGUAGE=\"JavaScript\">");
	imageWindow.document.writeln("<!-- Begin\nfunction fitWindowSize() { var isNav4, isIE4; if (parseInt(navigator.appVersion.charAt(0)) >= 4) {");
	imageWindow.document.writeln("isNav4 = (navigator.appName == \"Netscape\") ? 1 : 0;");
	imageWindow.document.writeln("isIE4 = (navigator.appName.indexOf(\"Microsoft\") != -1) ? 1 : 0;}");
	imageWindow.document.writeln("if (isNav4) {window.innerWidth = document.layers[0].document.images[0].width;");
	imageWindow.document.writeln("window.innerHeight = document.layers[0].document.images[0].height;}");
	imageWindow.document.writeln("if (isIE4) {window.resizeTo(800, 600);");
	imageWindow.document.writeln("width = 800 - (document.body.clientWidth -  document.images[0].width);");
	imageWindow.document.writeln("height = 600 - (document.body.clientHeight -  document.images[0].height);");
	imageWindow.document.writeln("window.resizeTo(width, height+50);   } } \/\/  End -->");
	imageWindow.document.writeln("<\/script>");

	imageWindow.document.writeln("<body bgcolor='#e3e3e3' onLoad=\"fitWindowSize()\">");
	imageWindow.document.writeln("<div style=\"position:absolute; left:0px; top:0px\">");
	imageWindow.document.writeln("<img src=\""+url+"\" onload=\"fitWindowSize()\">");
	imageWindow.document.writeln("<br><center><input onclick=\"window.close();\" class='inputButton' type=\"button\" onmouseout=\"this.style.backgroundColor='#484848'\" onmouseover=\"this.style.backgroundColor='#333333'\" value=\"Close Window\" style='cursor: hand'><\/div><\/body><\/html>");

}