//-------------------------------------------------
// Quicktask Function used in the left Navigation
//-------------------------------------------------

function QuickTaskOver (aobject, linkcolor, bgcolor)
{			
	//
	// Set Cursor
	//
	if (document.all)
	{
		aobject.style.cursor = "hand";
	}
	else
	{
		aobject.style.cursor = "pointer";
	}

	//
	// Set background
	//
	aobject.style.backgroundColor = bgcolor;
	aobject.style.color			  = linkcolor;
}

function QuickTaskOut (aobject, linkcolor, bgcolor)
{
	//
	// Set background
	//
	aobject.style.backgroundColor = bgcolor;
	aobject.style.color			  = linkcolor;
}

function QuickTaskPopup(url, width, height, page)
{
	quickWindow = window.open('' + url + '?&page=' + page + '','quickWindow','toolbar=no, location=no, scrollbars=1, width=' + width + ', height=' + height + ', left=100, top=100, alwaysRaised=true');
	
	quickWindow.focus();
	
	if (quickWindow.opener == null) 
		quickWindow.opener = self;
}