var bColor;

function rowOver()
{
	lmnt = window.event.srcElement;
	if (lmnt.tagName.toUpperCase() == 'TABLE')
		return;
	while (lmnt.tagName.toUpperCase() !='TR') 
		lmnt = lmnt.parentElement;
	bColor = lmnt.style.backgroundColor;

//	lmnt.className = "row_over";
	lmnt.style.backgroundColor = "#003260";
	lmnt.style.color = "white";

}

function rowOut()
{
	lmnt = window.event.srcElement;
	if (lmnt.tagName.toUpperCase() == 'TABLE')
		return;
	while (lmnt.tagName.toUpperCase() !='TR') 
		lmnt = lmnt.parentElement;
//	lmnt.className = "product_list";
	lmnt.style.backgroundColor = bColor;
	lmnt.style.color = "black";

}

function StatusPopup(nID) {
//	showModelessDialog("popupstatus.asp?type=" + nID,window,"dialogHeight:180px;dialogWidth:300px;center:1;resizable:0;scroll:0;status:0");
	window.open("popupstatus.asp?type=" + nID, "popupStatus", "width=300,height=180,scrolling=0,status=0,resizable=0");
}
