var msgWin;

function displayMsg(msg) 
{
	
        if(msgWin && !msgWin.closed) msgWin.close();
        msgWin=window.open ("","Message","width=700,height=150,resizable=yes,scrollbars=yes");
        msgWin.document.write("<center><p>");
        msgWin.document.write(msg);
        msgWin.document.write("</p>");
		msgWin.document.write("<form>");
		msgWin.document.write("<input id='button1' name='button1' type='button' value='Close' onClick='window.close()'>");
		msgWin.document.write("</form></center>");        
}