function mOvr(e,clrOver){
	e.style.cursor = 'hand'; 
	e.bgColor = clrOver;
} 
function mOut(e,clrIn){ 
	e.style.cursor = 'default'; 
	e.bgColor = clrIn;
} 
function mClk(src){ 
	if(window.event.srcElement.tagName=='TD')
		src.children.tags('A')[0].click();
}
function searchQuikPro(){
	if (document.frmSearchQuik.qp.value == '')
		alert('Please enter the QuikPro Number!');
	else
		document.frmSearchQuik.submit(); 
}
function openChangeWin(contentURL){
	newWindow = window.open(contentURL, null, 'height=336,width=380,status=no,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes');
	window.newWindow.focus();
}
function RunFlash(objid, location, width, height, bgcolor)
{
    document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="' + width + '" HEIGHT="' + height + '" id="' + objid + '" ALIGN="" >\n');
    document.write('<PARAM NAME="movie" VALUE="' + location + '">\n');
	document.write('<PARAM NAME="quality" VALUE="high">\n');
	document.write('<PARAM NAME="bgcolor" VALUE="' + bgcolor + '">\n');
	document.write('<EMBED src="' + location + '" quality="high" bgcolor="' + bgcolor + '" WIDTH="' + width + '" HEIGHT="' + height + '" NAME="' + objid + '" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>\n');
    document.write('</object>\n');
}
/*
function change(e, color){
var el=window.event? event.srcElement: e.target

if (el.tagName=="INPUT"&&el.type=="button")
el.style.backgroundColor=color
}*/