﻿var wc_enable = false;
var wc_stage = 3;
var wc_livelink = new Array(2);
var wc_popup = new Array(3);

function show_webcast_win( wc_url) {
	if (wc_url!=null && wc_url!='') {
		window.open(wc_url,'livepop','menubar=0,toolbar=no,location=no,status=no,scrollbars=no,resizable=no,height=470,width=815,top=0,left=0');					
	}
}

function MM_showHideLayers() { //v3.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v='hide')?'hidden':v; }
    obj.visibility=v; }
}

function wc_init(){
	// Define livelinks and images
	if (language=='zh_HK'){
		wc_livelink[0] = 'http://202.181.213.179/pccw/2009a/index_c.html';
		wc_livelink[1] = 'http://202.181.213.179/pccw/2009a/index56_c.html';
		wc_popup[0] = '/staticfiles/PCCWCorpsite/COMMON/Webcast/2010/popup_20100309_ar_c.jpg';
		wc_popup[1] = '/staticfiles/PCCWCorpsite/COMMON/Webcast/2010/popup_20100309_ar_time_c.jpg';
		wc_popup[2] = '/staticfiles/PCCWCorpsite/COMMON/Webcast/2010/popup_20100309_ar_live_c.jpg';
	}else{
		wc_livelink[0] = 'http://202.181.213.179/pccw/2009a/index.html';
		wc_livelink[1] = 'http://202.181.213.179/pccw/2009a/index56.html';
		wc_popup[0] = '/staticfiles/PCCWCorpsite/COMMON/Webcast/2010/popup_20100309_ar_e.jpg';
		wc_popup[1] = '/staticfiles/PCCWCorpsite/COMMON/Webcast/2010/popup_20100309_ar_time_e.jpg';
		wc_popup[2] = '/staticfiles/PCCWCorpsite/COMMON/Webcast/2010/popup_20100309_ar_live_e.jpg';
	}

	// Draw webcast layer	
	var tempHTML = '';
	tempHTML += '<table width="960" cellpadding="0" cellspacing="0">';
	tempHTML += '<tr><td align="center"><img src="/resources/Common/images/spacer.gif" name="wcLayerImg" id="wcLayerImg" width="330" height="200" usemap="#wcLayerMap" border="0"></td></tr>';
	tempHTML += '</table>	';
	$('#wcLayer').append(tempHTML);

	tempHTML = '<map name="wcLayerMap">';
	tempHTML += '<map name="wcLayerMap"><area shape="rect" coords="305,5,325,25" href="javascript:;//" onclick="wc_close();return false;" target="_self">'
	if (wc_stage==3){	
		if (language=='zh_HK'){
			tempHTML +='<area shape="rect" coords="72,140,152,164" href="javascript:;//" onclick="wc_goLive(0)" target="_self">';
			tempHTML +='<area shape="rect" coords="174,140,264,164" href="javascript:;//" onclick="wc_goLive(1)" target="_self">';
		}else{
			tempHTML +='<area shape="rect" coords="53,143,172,162" href="javascript:;//" onclick="wc_goLive(0)" target="_self">';
			tempHTML +='<area shape="rect" coords="190,143,270,162" href="javascript:;//" onclick="wc_goLive(1)" target="_self">';
		}
	}
	$('#wcLayer').after(tempHTML+'</map>');

	$('#wcLayerImg').attr('src',wc_popup[wc_stage-1]);
	$('#wcLayer').fadeIn(1500);
	setTimeout("wc_close()",15000);
}

function wc_close(){
	$('#wcLayer').fadeOut("slow");
}

function wc_goLive(c){
	var webcast_link = '';
	if (language=='zh_HK'){
		if (c==0) webcast_link = wc_livelink[0]; //WEBCAST_URL_BB_C;
		if (c==1) webcast_link = wc_livelink[1]; //WEBCAST_URL_56K_C;
	}else{
		if (c==0) webcast_link = wc_livelink[0]; //WEBCAST_URL_BB_E;
		if (c==1) webcast_link = wc_livelink[1]; //WEBCAST_URL_56K_E;
	}
	
	show_webcast_win(webcast_link);
}

if (wc_enable) wc_init();
