/*
** Copyright IBM Corp., 2008. All Rights Reserved.
*/
/******************************Augusta Live Console */
var alWindow = "";
var alLaunchPage = "";
var defaultVideo = "ir";
function launchALCsyn(video_ref,syn,debug,alt){
alLaunchPage = "http://www.masters.com/en_US/console/console.html?";
var d = new Date()
var t = d.getTime()
alLaunchPage += "ts=" + t;
if ((video_ref == '1516') || (video_ref == 'ac') || (video_ref == 'p3') || (video_ref == 'ir') || (video_ref == 'me')) {
alLaunchPage += '&video=' + video_ref;
}
else{
alLaunchPage += '&video=' + defaultVideo;
}
alLaunchPage += (syn)?"&syn="+syn:"&syn=";
alLaunchPage += (debug && debug.indexOf("debug")>-1)?"&db=true":"&db=false";
alLaunchPage += "&ref=" + document.location.host + document.location.pathname;
alLaunchPage += (alt)?"&alt="+alt:"&alt=";
if (alWindow.closed || alWindow==""){
alWindow = window.open(alLaunchPage,"alWindow","width=960,height=540,top=0,left=0")
if (alWindow.opener == null) alWindow.opener=self;
}
alWindow.focus();
}
