function openWindow(){
var wep;
var op;
wep = confirm("是否打開新網頁?");
if(wep==true)
{
op = prompt("默認網址為:","http://www.xianlaiwan.cn/");
if(op!=null)
window.open(op,'_blank','width=400,height=500,menubar=no,toolbar=no');
}
else
alert("操作結束!!");
//定義"隱藏內容"的函數
function hidden1(){
var element = document.getElementById("txt");
if(element.style.display=="none"){
element.style.display="block";
}else{
element.style.display="none";
}
function cancle(){
var c=confirm('重置');
if (c==true){
ab=document.getElementById('txt') ;
cd=document.getElementById('con');
cd.removeAttribute('style');
ab.removeAttribute('style');
}
else {}
}
function openWindow(){
var open=confirm("是否打開慕課網");
if(open)
{
var site=prompt("將打開","http://www.xianlaiwan.cn/");
window.open(site,"width:400; height:500; meunbar:no; toolbar:no;")
}
}