// JavaScript Document

function SetImgSrc(id, ImgLocation)
{
	eval("top.document.getElementById('" + id + "').src='" + ImgLocation + "'");
	return true;	
}

var win;
function OpenLargerImage(pageSrc){	
	
	
	win=window.open(pageSrc,'iWin','width=250,height=450');
	
	
}
