function  TextInNewWindow(name)
{
mywidth=400
myheight=300
my=window.open("",""," width="+ mywidth + " ,height="+myheight +" ,resizable=yes,toolbar=no");
my.document.writeln(" <html><body bgcolor='#ffffff' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
my.document.writeln("<table border=0 width='100%' height='100%' bgcolor='#ffffff' cellpadding='0' cellspacing='0'><tr><td>");
my.document.writeln(name);
my.document.writeln("</td></tr></table></html> ");
my.focus();
}

function NewWindowOpen(value) {
var pic=value
var str = "toolbar=yes,directories=yes,location=yes,status=yes,menubar=yes,resizable=yes,scrollbars=yes,left=0,top=0";
window.open(pic,"",str);
}


function Refresh()
{
 location.reload();
}


function Submit(name)
{
document.forms[name].submit();
}


function AutoRefresh()                        // not in use
{
var a=5;
setTimeout('Refresh()',5000);
}




function verify(path,msg)
{
 var agree=confirm("Are you sure to delete?"+msg);
 if (agree)
  location.href=path;        
}

