﻿function MM_controlSound(x, _sndObj, sndFile) { //v3.0
  var i, method = "", sndObj = eval(_sndObj);
  if (sndObj != null) {
    if (navigator.appName == 'Netscape') method = "play";
    else {
      if (window.MM_WMP == null) {
        window.MM_WMP = false;
        for(i in sndObj) if (i == "ActiveMovie") {
          window.MM_WMP = true; break;
      } }
      if (window.MM_WMP) method = "play";
      else if (sndObj.FileName) method = "run";
  } }
  if (method) eval(_sndObj+"."+method+"()");
  else window.location = sndFile;
}
function click()
{
if (event.button==2)
{
window.alert("Hello！歡迎光臨唐維科技有限公司！");
}
}
document.onmousedown=click
function NoRightClick(evnt) {
if (navigator.appName.toUpperCase().match(/NETSCAPE/) != null) {
if (evnt.which == 3){alert("Hello！歡迎光臨唐維科技有限公司！");return false;}}else
if (event.button==2)alert("Hello！歡迎光臨唐維科技有限公司！");}
document.onmousedown = NoRightClick;
document.onselectstart=new Function("event.returnValue=false");

function openInfoWindow( theUrl )
{
	showModalDialog( theUrl,"","dialogHeight:400px; dialogWidth:700px; dialogTop:2px; dialogLeft:2px; status:no; Resizable:yes" );
}