var changecolor = "tabhover";
var stdcolor = "tab1";


function setPointerCell(theRow,color)
{

	if(color == changecolor)
	{
		//theRow.setAttribute('background', "img/tabtop.jpg", 0);
	}
	else
	{
	}

	theRow.setAttribute('className', color, 0);

}


function doLogout()
{
	document.location.href = "backoffice_login.php?t=logout";
}


function openPopup(href,w,h) 
{ 
	var url = href; 
	if (!url) return true;
	
	var args = 'width='+w+',height='+h+',resizable'; 

	pop = window.open(url,'',args); 
	return (pop) ? false : true; 
} 

