function open_window(msg,title,w,h)
{
        win = window.open("", "win", "width="+w+",height="+h+",screenX=3,left=3,screenY=3,top=3");
        win.focus();
        win.document.open("text/html");
        win.document.write("<HTML><HEAD><TITLE>"+title+"</TITLE></HEAD><BODY onLoad='window.focus();' marginwidth=0 marginheight=0 topmargin=0 leftmargin=0  bgcolor=#ffffff><center>"+
        msg+"</center></BODY></HTML>");
        win.document.close();
}
function send_alert(msg,title)
{
        win = window.open("", "win", "width=200,height=105,screenX=350,left=350,screenY=250,top=250");
        win.focus();
        win.document.open("text/html");
        win.document.write("<HTML><HEAD><TITLE>"+title+"</TITLE></HEAD><BODY onLoad='window.focus();'  bgcolor=#d3d6ce><center>"+
        "<TABLE border=0 width=100% cellpadding=0 cellspacing=0><TR><TD align=left>"+
        "<img src=img/alert.gif width=32 height=32 hspace=20></TD><TD><font size=1 face=Verdana>"+
        msg+"&nbsp;</TD></TR></TABLE>"+
        "<FO"+"RM onSubmit='return false;' wrap=virtual name=popupForm><input type=image src='img/close.gif' onClick='self.close();'></FO"+"RM>"+
        "</center></BODY></HTML>");
        win.document.close();
}