<!--
//´Ù±â´É ÆÄ¾÷Ã¢
function Common_PopUp(Doc,s_width,s_height)
{
	var popupURL = Doc ;

	intLeft = (screen.width) ? (screen.width - s_width) / 2: 0;
	intTop = (screen.height) ? (screen.height - s_height) / 2: 0;

	var popup = window.open(popupURL,"popup",'scrollbars=yes ,width=' + s_width + ',height=' + s_height + ', left=' + intLeft + ', top=' + intTop);

	if( navigator.appName.substring(0,8) == "Netscape" ) 
	{
	   popup.location = popupURL;
	   
	}
}
function PopUp_Win(HtmlPage, s_width, s_height) 
{

  intLeft = (screen.width) ? (screen.width - s_width) / 2: 0;
  intTop = (screen.height) ? (screen.height - s_height) / 2: 0;
  var popupURL = HtmlPage;
  var popup = window.open(popupURL,'popup','scrollbars=no,resizable=yes,width=' + s_width + ',height=' + s_height + ', left=' + intLeft + ', top=' + intTop);

  if( navigator.appName.substring(0,8) == 'Netscape' ) {
     popup.location = popupURL;
  }
}
function PopUp_Win1(HtmlPage, s_width, s_height) 
{
	var index = HtmlPage.selectedIndex;
  intLeft = (screen.width) ? (screen.width - s_width) / 2: 0;
  intTop = (screen.height) ? (screen.height - s_height) / 2: 0;
  var popupURL = HtmlPage.options[index].value;
  var popup = window.open(popupURL,'popup','scrollbars=no,resizable=yes,width=' + s_width + ',height=' + s_height + ', left=' + intLeft + ', top=' + intTop);

  if( navigator.appName.substring(0,8) == 'Netscape' ) {
     popup.location = popupURL;
  }
}
function gopopup(url) {
	win = window.open(url, 'webtourOffice', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=669,height=600');
}

function clickEvent(e) 
{
 if(e.which ==3) {
	alert("::: Welcome To Mediatour...... :::");
 return false; 
 }
} 

function click() 
{
 if ((event.button==2) || (event.button==3)) {
	alert("::: Welcome To Mediatour...... :::")}
}

if (document.layers) 
{
  document.captureEvents(Event.MOUSEDOWN);
  document.onmousedown = clickEvent;
}
if (document.all) 
{
    document.onmousedown = click;
}

//-->