//JS FILE
function popMeUp(msg)
		{
		var myContent="<table width=450 border=1 bgcolor=pink bordercolor=black cellpadding=2 ><tr><td align=center><font color=black size=2>" + msg + "</font></td></tr></table>";
		//var old,skn,iex=(document.all),yyy=-1000;
		skn = document.all.dek.style;
		document.all("dek").innerHTML=myContent;skn.display='';
		skn.visibility="visible";
		skn.left=320;
		skn.top=150;
		}
		function popMeDown(){
		yyy=-1000;
		skn.visibility="hidden";
		}
		
		//function OpenFile(){
		//if (document.getElementById("txtMyNewFile").value !="")
		//{
		//var myText = document.getElementById("txtMyNewFile").value;
		//window.open(myText,"myWindow");
      //  }
       // else
      //  {
      //  alert("This Needs a file");
		//}
		//}
		//******************************************************************************
		function HideCal(){
document.getElementById("CalHide").style.visibility  = "hidden";
document.getElementById("txtDateFrom").focus();
}
function ShowCal(){
document.getElementById("CalHide").style.visibility  = "visible";
document.getElementById("txtDateFrom").focus();
}
function CalChoice(){
if (document.getElementById("cboDateSelect").value == "Between")
ShowCal();
else
HideCal();
}
