<!--
function changeorders()
{
window.open("","changeorders","width=50,height=50,top=0,left=0");
}
function numKey(e){
   chars= "0123456789.";
   e = window.event;
   if(chars.indexOf(String.fromCharCode(e.keyCode))==-1) {
    alert("輸入字元提示!!\n\n 0-9. 數字與小數點。\n");
    window.event.keyCode=0;
   }
}

function azKey(e){
   chars= "0123456789abcdefghijklmnopqrstuvwxyz-";
   e = window.event;
   if(chars.indexOf(String.fromCharCode(e.keyCode))==-1) {
    alert("輸入字元提示!!\n\n 可使用之字元為26個小寫英文字母、0-9 數字、連結符號 - 等37個字元。\n");
    window.event.keyCode=0;
   }
}
function go_smallpic(smallpic)
{
window.open(smallpic,'smallpic',"width=152,height=156,resizable=yes,scrollbars=yes,left=50,top=50");
}
function go_middlepic(middlepic)
{
window.open(middlepic,'middlepic',"width=282,height=288,resizable=yes,scrollbars=yes,left=50,top=50");
}
function go_bigpic(bigpic,widths,heights)
{
window.open(bigpic,"bigpic","width=" + widths + ",height=" + heights + ",resizable=yes,scrollbars=yes,left=50,top=50");
}
function membersadd()
{
window.open("members.asp","addmember_shopsamples","width=700,height=460,resizable=yes,scrollbars=yes,status=yes,top=50,left=50");
}
function check()
{
window.open("check.asp","checks_shopsamples","width=700,height=460,resizable=yes,scrollbars=yes,status=yes,top=50,left=50");
}
function sslspeediness()
{
window.open("checkc.asp","checks_shopsamples","width=700,height=460,resizable=yes,scrollbars=yes,status=yes,top=50,left=50");
}
function help()
{
window.open("help.asp","help","width=680,height=460,resizable=yes,scrollbars=yes,status=yes,top=50,left=50");
}
//-->
