
//This script writen by TT Dizains, 
//you can use it free with this notation inside
//this function highlite background in mouseovered object
selC="#ffffcc"; // highlited row color  - must be set in main  file
var beforeSelect="";
function hl(o,h)
{
var c="", cu="";
if (h) 	 {
		if (o.style.backgroundColor!='')
		{
			beforeSelect=o.style.backgroundColor;
		}
		c=selC;
		cu="hand"
		}
if (h==0)
{
	c=beforeSelect;
}
o.style.backgroundColor=c;
o.style.cursor=cu;
}//function hl()

function mhl(o,h,b)
{
o.style.backgroundColor=mybgs[h];
o.style.color=mycolors[b];
o.style.cursor="hand";
if(b) {
o.style.borderBottomColor="black";
o.style.borderTopColor="white";	
}
else {
o.style.borderBottomColor="#d9d9d9";
o.style.borderTopColor="#d9d9d9";	
	
}

}//function hl()

function ope(lnk)
{
aa=window.open(lnk,null,"top=0,left=0,width=440,height=300,title=0,toolbars=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,border=0");
}//function ope(lnk)
