function openWindow(){
var new1=prompt("請輸入要打開的網頁:"," http://www.xianlaiwan.cn/");
window.open(new1,'width=400,height=500','menubar=no,toolbar=no');
}
function openWindow(){
var mymessage=confirm();
if(mymessage==true)
{
window.open('http://www.xianlaiwan.cn','_blank','width=300,height=200,menubar=no,toolbar=no, status=no,scrollbars=yes');
}