// JavaScript Document
<!--
var pre;
	var nex;
	
	function big(obj){
		pre = document.all ? obj.previousSibling : obj.previousSibling.previousSibling;
		nex = document.all ? obj.nextSibling : obj.nextSibling.nextSibling;
		if (pre && pre.tagName != 'IMG') pre = pre.previousSibling;
		if (nex && nex.tagName != 'IMG') nex = nex.nextSibling;
		//alert(nex.tagName);
		url = obj.src.replace('/t/', '/l/');
		wiNovi=open('','displayWindow','left=180px,top=150px,width=500,height=405,status=no,resizable=no,toolbar=no,scrollbars=no,menubar=no');
		wiNovi.document.open();
		var html = '';
		html += '<html><head><title>Large Photo</title>';
		html += '<style>img{display:block} a{font-family:Verdana, Arial; font-size:14px; text-decoration:none; color:#000} a:hover{text-decoration:underline; color:#444}</style></head>';
		html += '<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">';
		html += '<a href="javascript:window.close()"><img border="0" src="' + url + '" alt="click to close" /></a>';
		html += '<table align="center" cellpadding="0" cellspacing="5"><tr><td width="100" align="right">';
		if(pre) html += '<a href="javascript://" onclick="window.opener.goPrev()">&laquo; back</a>';
		html += '</td><td width="100" align="left">';
		if(nex) html += '<a href="javascript://" onclick="window.opener.goNext()">next &raquo;</a>';
		html += '</td></tr></table>';
		html += '</body></html>';
		wiNovi.document.write(html);
		wiNovi.document.close();
	}
	
	function goPrev(){
		big(pre);
	}
	
	function goNext(){
		big(nex);
	}

//-->