// JavaScript Document
// Window Pop-Up
function popwin(msg)
{
newwindow= window.open ("", "mywindow", "width=500,height=200");
newwindow.moveTo(100,100);
newwindow.document.write('<p>'+msg+'</p>');
}

