function openWindow(){
var wp=confirm("打開網址?");
if(wp==true)
{
var op=prompt('打開下面網址', 'http://www.xianlaiwan.cn')
}
if(op!=null){
window.open(op,'_black','width=400,height=500,menubar=no,toolbar=no')
}
}
function display(){
var d=document.getElementById("txt")
d.style.display="block"
};
function cancel()
{
var tips = confirm('是否取消設置');
if(tips==true)
{
txt.removeAttribute('style');
}
}
function color(){
var a=document.getElementById("txt");
a.style.color="red"};
function wh(){
var b=document.getElementById("txt");
b.style.width="500px";b.style.height="500px"};
function hide(){
var c=document.getElementById("txt");
c.style.display="none"
};