1 : // start: notice.js¢Ò
2 : ¢Ò
3 : var mover_color, win_width, win_height;¢Ò
4 : ¢Ò
5 : function mover(id) { id.style.background= mover_color; }¢Ò
6 : function mout(id,bgc) { id.style.background= bgc; }¢Ò
7 : function Op(db, selno, virtual_no)¢Ò
8 : {¢Ò
9 : if(win_width<100) win_width= 500;¢Ò
10 : if(win_height<100) win_height= 400;¢Ò
11 : url= "view.wel?nt=y&db="+db+"&no="+selno+"&vn="+virtual_no;¢Ò
12 : option= "left=10,top=10,width="+win_width+",height="+win_height¢Ò
13 : + ",toolbar=no,menubar=no,status=no,resizable=yes,scrollbars=yes";¢Ò
14 : window.open(url, "notice", option);¢Ò
15 : return;¢Ò
16 : }¢Ò
17 : ¢Ò
18 : function goview(db, selno, virtual_no)¢Ò
19 : {¢Ò
20 : location.href= "view.wel?nt=y&db="+db+"&no="+selno+"&vn="+virtual_no;¢Ò
21 : return;¢Ò
22 : }¢Ò
23 : ¢Ò
24 : var com_argument, virtual_number;¢Ò
25 : ¢Ò
26 : function gomail2(name, email)¢Ò
27 : {¢Ò
28 : url= com_argument+"&nt=y&lc=view&vn="+virtual_number¢Ò
29 : + "&to="+email+"&toname="+name;¢Ò
30 : location.replace("mail.wel?"+url);¢Ò
31 : }¢Ò
32 : // end¢Ò
|