/*----------------------------------------This javascript is used for change the color and image of greenlinks 
			like(Add to Comparsion, advanceSearc) on mouseover  on searchresuttpage,propinfopage,project info page
			and on every page where these green links are used----------------------------------------------------------*/

function chimgover(td1,imgid1,imgid2)
{
	
	eval('document.all.'+imgid1).className='ChImg1';
	eval('document.all.'+td1).className='ChBtn';
	eval('document.all.'+imgid2).className='ChImg2';
}
function chimgout(td1,imgid1,imgid2)
{
 	eval('document.all.'+td1).className='greenlnk';
	eval('document.all.'+imgid1).className='GreenImg1';
	eval('document.all.'+imgid2).className='GreenImg2';
}


/*function View(str,pg)
	{
		<%' if session("UserId")="" or session("UserId")="0" then%>
			var mwidth=600,mheight=360;
			window.open('','wincalc','toolbar=no,titlebar=no,location=no,directories=no,status=no,menubar=no,resizable=no,copyhistory=no,fullscreen=no,scrollbars=0,top=150,left=190,width='+(mwidth-6)+',height='+(mheight-26));
			document.ResultFrm.target='wincalc';
			document.all.ResultFrm.action='sample.asp?Result=1&Page='+pg;
			document.all.ResultFrm.submit();
			//return false;
		<%'else%>	
			document.ResultFrm.target='_self';
			document.all.ResultFrm.action=str;
			document.all.ResultFrm.submit();
		<%'end if%>
	}*/


