function haha()  
   {msgWindow=window.open("http://techart.tnua.edu.tw/1_entrance/94-exam_final.html","exam","toolbar=no,menubar=no,location=no,status=no,scrollbars=yes,resizable=yes,width=700,height=480") } 


/*********************************************************************************
下面樣本： copy/paste function 下面的幾行至上面 function haha() 下面
**********************************************************************************/
function exam()
   {msgWindow=window.open("http://techart.tnua.edu.tw/1_entrance/94-exam_final.html","exam","toolbar=no,menubar=no,location=no,status=no,scrollbars=yes,resizable=yes,width=700,height=480") } 
 
function DemoShow() 
   {msgWindow=window.open("2_demoshow/index.html","demo",
   "toolbar=no,menubar=no,location=no,status=no,scrollbars=no,resizable=yes,width=770,height=500") } 

function flowerapp()
   {msgWindow=window.open("http://techart.tnua.edu.tw/2_exhibition/flower-app.html","flowerapp",
   "toolbar=no,menubar=no,location=no,status=yes,scrollbars=yes,resizable=yes,width=700,height=400") }  

function flower2004()
   {msgWindow=window.open("http://techart.tnua.edu.tw/2_exhibition/flower-exh.html","flower2004",
   "toolbar=no,menubar=no,location=no,status=yes,scrollbars=yes,resizable=yes,width=700,height=560") }  

function NewWindow(mypage,myname,w,h,scroll,pos){
var win=null;
if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
win=window.open(mypage,myname,settings);}