function show_popup(){
var popwnd = window.open("about:blank","new","width=3000,height=2000,location=0");
popwnd.document.open();
popwnd.document.write("<html><body><font size='12px'>" + textmessage + "</font></body></html>");
popwnd.document.close();
popwnd.focus();
}