function toggleSideMenuCategories(obj, active) 
{
	var objChild = obj.getElementsByTagName('UL');
	if (active == 1)
	{
		obj.className='over';
		if (objChild[0]) objChild[0].style.display = "block";
	}
	else
	{
		obj.className='';
		if (objChild[0]) objChild[0].style.display = "none";
	}
}

function toggleTopMenu(obj, active) 
{
	var objChild = obj.getElementsByTagName('UL');
	if (active == 1) {
		obj.className='over';
		if (objChild[0]) objChild[0].style.visibility = "visible";
	} else {
		obj.className='';
		if (objChild[0]) objChild[0].style.visibility = "hidden";
	}
}

function NewWin(url)
{
    window.open(url,'_blank','resizable=yes,menubar=yes,scrollbars=yes,width=800,height=800,screenY=40,screenX=40,top=40,left=40');
}

function BuySetRing(ProductID, CategoryID)
{
    myWin = window.open("detail?cid=" + CategoryID + "&pid=" + ProductID + "&newpage=1", "Wedding bands", "width=900, height=700, scrollbars=1");
    ScreenWidth = screen.width;
    ScreenHeight = screen.height;
    myWin.moveTo((ScreenWidth/2)-450, (ScreenHeight+700/2)-350);
}


