function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1,width=800,height=600');");
}


 
    function OnClick(id, txt) {
        txtBox = document.getElementById(id);
        if (txtBox.value == txt)
            txtBox.value = "";
    }
 
    function onBlur(id, txt) {
        txtBox = document.getElementById(id);
        if (txtBox.value == "")
            txtBox.value = txt;
    }       
 
function submitenter(myForm,e)
{
var keycode;
if (window.event) keycode = window.event.keyCode;
else if (e) keycode = e.which;
else return true;

if (keycode == 13)
   {
   myForm.submit();
   return false;
   }
else
   return true;
}


