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 MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function wsdc_pics(imageName,imageWidth,imageHeight,alt,posLeft,posTop)
{
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",left="+posLeft+",top="+posTop+",scrollbars=yes");
	newWindow.document.open();
	newWindow.document.write("<html><title>"+alt+"<\/title><body bgcolor=#FFFFFF leftmargin=0 topmargin=0 rightmargin=0 bottommargin=0 marginheight=0 marginwidth=0 onBlur=\"self.close();\">");
//	newWindow.document.write("<img src="+imageName+" width="+imageWidth+" height="+imageHeight+" alt=\""+alt+"\">");
	newWindow.document.write("<img src="+imageName+" alt=\""+alt+"\">");
	newWindow.document.write("<\/body><\/html>");
	newWindow.document.close();
	newWindow.focus();
}
