function expandit(curobj,arr){
	e = '';
	ns6=document.getElementById&&!document.all?1:0;
	e = ns6?document.getElementById(curobj).style:document.all[curobj].style;

	if (e.display == "none"){
		e.display = "";
		//document[arr].src = eval('arron.src');
	} else {
		e.display = "none";
		//document[arr].src = eval('arroff.src');
	}
	
	
}

// display large version of image
function viewLarge(url,height,width){
	imgvu=window.open("", "viewLarge","height="+height+",width="+width+",toolbar=no,scrollbars=no,menubar=no");
	imgvu.document.write('<html><head><title>View Large</title></head><body marginwidth="0" marginheight="0" leftmargin="0" rightmargin="0" bottommargin="0" topmargin="0"><a href="javascript:window.close();"><img src="'+url+'" border="0"></a></body></html>');	 
	imgvu.document.close();
	imgvu.focus();
}	
