// JavaScript Document
<!-- start code -->


	var large_image = new Image()
	var current_title = "";
	function openLargeImageWindow(img,picTitle) {
		try {
			current_title = picTitle;
		} catch(e){
			current_title = "";
		}
		document.large_image.src = img;
		large_imageonLoad = function (){
			var htmlBuff = "";
			htmlBuff += '<html>\n';
			htmlBuff += '	<head>\n';
			htmlBuff += '		<title>' + current_title + '</title>\n';
			htmlBuff += '	</head>\n';
			htmlBuff += '<body bgcolor="#666666" topmargin=0 leftmargin=0>\n';
			htmlBuff += '<table cellpadding=0 cellspacing=0>\n';
			htmlBuff += '<tr>\n';
			htmlBuff += '	<td><img src="' + img + '" alt="Loading image ..." title="" ></td>\n';
			htmlBuff += '</tr>\n';
			htmlBuff += '<tr>\n';
			htmlBuff += '	<td align=right><a href="javascript:window.close()" style="text-decoration:none;color:#777;background-color:#bbb;font-weight:bold;border-left:2px solid #000;" class="makeright">Close</a></td>\n';
			htmlBuff += '</tr>\n';
			htmlBuff += '</table>\n';
			htmlBuff += '</body>\n';
			htmlBuff += '</html>\n';		
			
			try {
				var win = window.open('', 'large_image', 'width=' + (document.large_image.width+1) + ',height=' + (document.large_image.height+20) + ',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');
				win.document.write(htmlBuff);
				win.document.close();
				win.focus() 			
			} catch(e) {
				alert("If you have Windows XP SP2 you have popup blocked in order to see this image please press control + click on the link")
			}
			document.large_image.src = "";
		}
	}
	document.write('<div style="position:absolute;left:-1000"><img src="" name="large_image" id="large_image" onload="large_imageonLoad();"></div>');
<!-- end code -->