//function to mouseover
function mOvr(src,clrOver){ 
	if (!src.contains(event.fromElement)){ 
		src.style.cursor = 'hand'; 
		src.bgColor = clrOver; 
		
	} 
} 

function mOut(src,clrIn){ 
	if (!src.contains(event.toElement)){ 
		src.style.cursor = 'default'; 
		src.bgColor = clrIn;
		
	} 
}
function mClk(src){ 
	if(event.srcElement.tagName=='TD')
		src.children.tags('A')[0].click();
}

//function to close window
	function closeWindow()
	{
		if (blnOpen==true){
			if(!win1.closed){
			win1.close();
			}	
			}
		blnOpen=false;
	}

	var win1='';
	var blnOpen = false;

	//function to open new window
	function openWindow(sURL)
	{
		closeWindow();
		blnOpen=true;
		win1 = open(sURL, 'NewWindow', "width=540,height=450,scrollbars=yes,toolbar=no,left=50,top=0");
	}
	

//********************************************************************************************
// Method:	ShowXHMTL
// Author:	Erik Mau
// Date:	10/16/2001
//********************************************************************************************
function ShowXHMTL()
{
	if (document.location.href.indexOf('?') != -1)
	{
		window.open(document.location.href + '&validate=1');
	}
	else
	{
		window.open(document.location.href + '?validate=1');
	}
}
