//This page contains the html code needed for the left navigation bar.
//Each link is assigned to variable and in the end that variable is written out.

function ShowHide(ctrlName) {
	var objX = document.getElementById(ctrlName); 
	
	if (objX.style.display != '') {
		objX.style.display = ''; 
	} else {
		objX.style.display = 'none'; 
	}
}

var tablestart="<table ALIGN=left BORDER=0 CELLSPACING=0 CELLPADDING=0 width=100%>";

var spa="<tr><td width=20 height=1><img src='../images/spacer.gif' width=20 height=1 border=0></td><td width=180>&nbsp;</td></tr>";

// Begin Promos Section
var promos="<tr><td width=20 height=20></td><td width=180 ALIGN=left><span onclick=\"javascript:ShowHide('promos');\" style='cursor:hand; font-family:Arial,Helvetica,sans-serif; font-size:12px; color:#A5BAED; font-weight:bold; '>&#8226; <a>DAILY PROMOS</a></span></td></tr>";

var link1="<tr id='promos' showing='0' style='" + g_arrSelection[41] + "'><td width=5 height=25></td><td><table ALIGN=left BORDER=0 CELLSPACING=0 CELLPADDING=0 width=100%><tr><td/><td width=151px><a href='http://www.shows.westwoodone.com/calan/index.htm' target='_blank'>CMT Radio Live with Cody Alan</a></td></tr>";

var link2="<tr><td width=5 height=25></td><td width=151><a href='/content/promos-miller.asp' >The Dennis Miller Show</a></td></tr>";

var link3="<tr><td width=5 height=20></td><td width=151><a href='/content/promos-fthompson.asp'>The Fred Thompson Show</a></td></tr>";

//var link4="<tr><td width=5 height=20></td><td width=151><a href='/content/promos-mike.asp'>The Mike O’Meara Show</a></td></tr>";

var link5="<tr><td width=5 height=25></td><td width=151><a href='/content/promos-jimbo.asp'>The Jim Bohannon Show</a></td></tr></table></td></tr>";

//var link6="<tr><td width=5 height=20></td><td width=151><a href='/content/promos-larson.asp'>The Lars Larson Show</a></td></tr></table></td></tr>";

//var link7="<tr><td width=5 height=20></td><td width=151><a href='/content/promos-oreilly.asp'>The Radio Factor with Bill O'Reilly</a></td></tr></table></td></tr>";




//If another link is needed then add
//var link18="<tr><td><img src='../images/navspacer01.gif' width=20 height=25 border=0></td><td><a href='#'>Link String</a></td></tr>";

var tableend="</table>";

document.write(tablestart);
document.write(spa);
document.write(promos);
document.write(link1);
document.write(link2);
document.write(link3);
//document.write(link4);
document.write(link5);
//document.write(link6);
//document.write(link7);



//For the new link
//last link added 26 UNDER NEWS TALK
//document.write(link18);
document.write(tableend);

