function goToNavUrl(url)
{
	location.href=gMainFarm+url;
}
function open_window(url,name,features){
	popup=window.open(url,name,features);
	if (window.focus)
		popup.focus();
}

function ShowLangTextBox(LangI)
{
	if(LangI == 2){
			document.all.lblSpaHeadlineBox.style.display='inline';
			document.all.lblSpaEventNBox.style.display='inline';
			document.all.txtSpaEventNBox.style.display='inline';
			document.all.txtSpaHeadlineBox.style.display='inline';
	}
	if(LangI == 1){
			document.all.lblSpaHeadlineBox.style.display='none';		
			document.all.lblSpaEventNBox.style.display='none';		
			document.all.txtSpaEventNBox.style.display='none';
			document.all.txtSpaHeadlineBox.style.display='none';
		}
}
 function turnOn(layerName, layerType) {	
	if (document.getElementById) // Netscape 6 and IE 5+
    {
        var text ;
              
        if (layerType == '1'){
            text = "Add to Cart";
            }
        else if (layerType == '2'){
            text = "Details";
            }
        else if (layerType == '3'){
			text = "Add to Lightbox";
			}
			
        document.getElementById(layerName).innerHTML= text;    
    }
}

function AddedItemToCart(layerName, layerType) {	
	if (document.getElementById) // Netscape 6 and IE 5+
    {
        var text ;
        if (layerType == '3')
            text = "Add to Cart";
        //else
        //    text = "Details";
    
        document.getElementById(layerName).innerHTML= text;    
    }
}
   
function turnOff(layerName) {
    if (document.getElementById) 
    {
        var targetElement = document.getElementById(layerName);
        //targetElement.style.visibility = 'hidden';
        document.getElementById(layerName).innerHTML= "&nbsp;";
    }
}

function trim(inputString) {
    // Removes leading and trailing spaces from the passed string. Also removes
    // consecutive spaces and replaces it with one space. If something besides
    // a string is passed in (null, custom object, etc.) then return the input.
    if (typeof inputString != "string") { return inputString; }
    var retValue = inputString;
    var ch = retValue.substring(0, 1);
    while (ch == " ") { // Check for spaces at the beginning of the string
    retValue = retValue.substring(1, retValue.length);
    ch = retValue.substring(0, 1);
    }
    ch = retValue.substring(retValue.length-1, retValue.length);
    while (ch == " ") { // Check for spaces at the end of the string
    retValue = retValue.substring(0, retValue.length-1);
    ch = retValue.substring(retValue.length-1, retValue.length);
    }
    while (retValue.indexOf("  ") != -1) { // Note that there are two spaces in the string - look for multiple spaces within the string
    retValue = retValue.substring(0, retValue.indexOf("  ")) + retValue.substring(retValue.indexOf("  ")+1, retValue.length); // Again, there are two spaces in each of the strings
    }
    return retValue; // Return the trimmed string back to the user
}
<!-- Begin
function emailCheck (emailStr) {

    /* The following variable tells the rest of the function whether or not
    to verify that the address ends in a two-letter country or well-known
    TLD.  1 means check it, 0 means don't. */

    var checkTLD=1;

    /* The following is the list of known TLDs that an e-mail address must end with. */

    var knownDomsPat=/^(com|net|org|edu|int|mil|gov|arpa|biz|aero|name|coop|info|pro|museum)$/;

    /* The following pattern is used to check if the entered e-mail address
    fits the user@domain format.  It also is used to separate the username
    from the domain. */

    var emailPat=/^(.+)@(.+)$/;

    /* The following string represents the pattern for matching all special
    characters.  We don't want to allow special characters in the address. 
    These characters include ( ) < > @ , ; : \ " . [ ] */

    var specialChars="\\(\\)><@,;:\\\\\\\"\\.\\[\\]";

    /* The following string represents the range of characters allowed in a 
    username or domainname.  It really states which chars aren't allowed.*/

    var validChars="\[^\\s" + specialChars + "\]";

    /* The following pattern applies if the "user" is a quoted string (in
    which case, there are no rules about which characters are allowed
    and which aren't; anything goes).  E.g. "jiminy cricket"@disney.com
    is a legal e-mail address. */

    var quotedUser="(\"[^\"]*\")";

    /* The following pattern applies for domains that are IP addresses,
    rather than symbolic names.  E.g. joe@[123.124.233.4] is a legal
    e-mail address. NOTE: The square brackets are required. */

    var ipDomainPat=/^\[(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\]$/;

    /* The following string represents an atom (basically a series of non-special characters.) */

    var atom=validChars + '+';

    /* The following string represents one word in the typical username.
    For example, in john.doe@somewhere.com, john and doe are words.
    Basically, a word is either an atom or quoted string. */

    var word="(" + atom + "|" + quotedUser + ")";

    // The following pattern describes the structure of the user

    var userPat=new RegExp("^" + word + "(\\." + word + ")*$");

    /* The following pattern describes the structure of a normal symbolic
    domain, as opposed to ipDomainPat, shown above. */

    var domainPat=new RegExp("^" + atom + "(\\." + atom +")*$");

    /* Finally, let's start trying to figure out if the supplied address is valid. */

    /* Begin with the coarse pattern to simply break up user@domain into
    different pieces that are easy to analyze. */

    var matchArray=emailStr.match(emailPat);

    if (matchArray==null) {

        /* Too many/few @'s or something; basically, this address doesn't
        even fit the general mould of a valid e-mail address. */

        alert("Email address seems incorrect (check @ and .'s)");
        return false;
    }
    var user=matchArray[1];
    var domain=matchArray[2];

    // Start by checking that only basic ASCII characters are in the strings (0-127).

    for (i=0; i<user.length; i++) {
        if (user.charCodeAt(i)>127) {
            alert("Ths username contains invalid characters.");
            return false;
            }
        }
        for (i=0; i<domain.length; i++) {
            if (domain.charCodeAt(i)>127) {
            alert("Ths domain name contains invalid characters.");
            return false;
        }
    }

    // See if "user" is valid 

    if (user.match(userPat)==null) {
        // user is not valid
        alert("The username doesn't seem to be valid.");
        return false;
    }

    /* if the e-mail address is at an IP address (as opposed to a symbolic
    host name) make sure the IP address is valid. */

    var IPArray=domain.match(ipDomainPat);
    if (IPArray!=null) {

    // this is an IP address

    for (var i=1;i<=4;i++) {
        if (IPArray[i]>255) {
            alert("Destination IP address is invalid!");
            return false;
        }
    }
    return true;
    }

    // Domain is symbolic name.  Check if it's valid.
     
    var atomPat=new RegExp("^" + atom + "$");
    var domArr=domain.split(".");
    var len=domArr.length;
    for (i=0;i<len;i++) {
        if (domArr[i].search(atomPat)==-1) {
            alert("The domain name does not seem to be valid.");
            return false;
        }
    }

    /* domain name seems valid, but now make sure that it ends in a
    known top-level domain (like com, edu, gov) or a two-letter word,
    representing country (uk, nl), and that there's a hostname preceding 
    the domain or country. */

    if (checkTLD && domArr[domArr.length-1].length!=2 && 
    domArr[domArr.length-1].search(knownDomsPat)==-1) {
        alert("The address must end in a well-known domain or two letter " + "country.");
        return false;
    }

    // Make sure there's a host name preceding the domain.

    if (len<2) {
        alert("This address is missing a hostname!");
        return false;
    }

    // If we've gotten this far, everything's valid!
    return true;
}
function isExpiryDate(year, month) {
    //var argv = isExpiryDate.arguments;
    //var argc = isExpiryDate.arguments.length;

    //year = argc > 0 ? argv[0] : this.year;
    //month = argc > 1 ? argv[1] : this.month;

    if (!isNum(year+""))
        return false;
    if (!isNum(month+""))
        return false;
    today = new Date();
    expiry = new Date(year, month);
    if (today.getTime() > expiry.getTime())
        return false;
    else
        return true;
}

function isNum(argvalue) {
    argvalue = argvalue.toString();

    if (argvalue.length == 0)
        return false;

    for (var n = 0; n < argvalue.length; n++)
        if (argvalue.substring(n, n+1) < "0" || argvalue.substring(n, n+1) > "9")
            return false;

    return true;
}
function ReplaceChar(s1, replMe, useMe){
    var s = new String(s1);
    var array = s.split(replMe);
    return array.join(useMe);
} 
function CloseAndRefresh(url) {       
    //window.close();
    //window.opener.location.reload();
    window.opener.location=url; 
    window.close();
}
/*  ================================================================
	    FUNCTION:  isCreditCard(st)
	 
	    INPUT:     st - a string representing a credit card number

	    RETURNS:  true, if the credit card number passes the Luhn Mod-10
			    test.
		      false, otherwise
	    ================================================================ */

	function isCreditCard(st) {
	  // Encoding only works on cards with less than 19 digits
	  if (st.length > 19)
	    return (false);

	  sum = 0; mul = 1; l = st.length;
	  for (i = 0; i < l; i++) {
	    digit = st.substring(l-i-1,l-i);
	    tproduct = parseInt(digit ,10)*mul;
	    if (tproduct >= 10)
	      sum += (tproduct % 10) + 1;
	    else
	      sum += tproduct;
	    if (mul == 1)
	      mul++;
	    else
	      mul--;
	}
	// Uncomment the following line to help create credit card numbers
	// 1. Create a dummy number with a 0 as the last digit
	// 2. Examine the sum written out
	// 3. Replace the last digit with the difference between the sum and
	//    the next multiple of 10.

	//  document.writeln("<BR>Sum      = ",sum,"<BR>");
	// alert("Sum      = " + sum);

	  if ((sum % 10) == 0)
	    return (true);
	  else
	    return (false);

	} // END FUNCTION isCreditCard()



	/*  ================================================================
	    FUNCTION:  isVisa()
	 
	    INPUT:     cc - a string representing a credit card number

	    RETURNS:  true, if the credit card number is a valid VISA number.
			    
		      false, otherwise

	    Sample number: 4111 1111 1111 1111 (16 digits)
	    ================================================================ */

	function isVisa(cc)
	{
	  if (((cc.length == 16) || (cc.length == 13)) &&
	      (cc.substring(0,1) == 4))
	    return isCreditCard(cc);
	  return false;
	}  // END FUNCTION isVisa()

	/*  ================================================================
	    FUNCTION:  isMasterCard()
	 
	    INPUT:     cc - a string representing a credit card number

	    RETURNS:  true, if the credit card number is a valid MasterCard
			    number.
			    
		      false, otherwise

	    Sample number: 5500 0000 0000 0004 (16 digits)
	    ================================================================ */

	function isMasterCard(cc)
	{
	  firstdig = cc.substring(0,1);
	  seconddig = cc.substring(1,2);
	  if ((cc.length == 16) && (firstdig == 5) &&
	      ((seconddig >= 1) && (seconddig <= 5)))
	    return isCreditCard(cc);
	  return false;

	} // END FUNCTION isMasterCard()





	/*  ================================================================
	    FUNCTION:  isAmericanExpress()
	 
	    INPUT:     cc - a string representing a credit card number

	    RETURNS:  true, if the credit card number is a valid American
			    Express number.
			    
		      false, otherwise

	    Sample number: 340000000000009 (15 digits)
	    ================================================================ */

	function isAmericanExpress(cc)
	{
	  firstdig = cc.substring(0,1);
	  seconddig = cc.substring(1,2);
	  if ((cc.length == 15) && (firstdig == 3) &&
	      ((seconddig == 4) || (seconddig == 7)))
	    return isCreditCard(cc);
	  return false;

	} // END FUNCTION isAmericanExpress()




	/*  ================================================================
	    FUNCTION:  isDinersClub()
	 
	    INPUT:     cc - a string representing a credit card number

	    RETURNS:  true, if the credit card number is a valid Diner's
			    Club number.
			    
		      false, otherwise

	    Sample number: 30000000000004 (14 digits)
	    ================================================================ */

	function isDinersClub(cc)
	{
	  firstdig = cc.substring(0,1);
	  seconddig = cc.substring(1,2);
	  if ((cc.length == 14) && (firstdig == 3) &&
	      ((seconddig == 0) || (seconddig == 6) || (seconddig == 8)))
	    return isCreditCard(cc);
	  return false;
	}



	/*  ================================================================
	    FUNCTION:  isCarteBlanche()
	 
	    INPUT:     cc - a string representing a credit card number

	    RETURNS:  true, if the credit card number is a valid Carte
			    Blanche number.
			    
		      false, otherwise
	    ================================================================ */

	function isCarteBlanche(cc)
	{
	  return isDinersClub(cc);
	}

	/*  ================================================================
	    FUNCTION:  isDiscover()
	 
	    INPUT:     cc - a string representing a credit card number

	    RETURNS:  true, if the credit card number is a valid Discover
			    card number.
			    
		      false, otherwise

	    Sample number: 6011000000000004 (16 digits)
	    ================================================================ */

	function isDiscover(cc)
	{
	  first4digs = cc.substring(0,4);
	  if ((cc.length == 16) && (first4digs == "6011"))
	    return isCreditCard(cc);
	  return false;

	} // END FUNCTION isDiscover()

	/*  ================================================================
	    FUNCTION:  isEnRoute()
	 
	    INPUT:     cc - a string representing a credit card number

	    RETURNS:  true, if the credit card number is a valid enRoute
			    card number.
			    
		      false, otherwise

	    Sample number: 201400000000009 (15 digits)
	    ================================================================ */

	function isEnRoute(cc)
	{
	  first4digs = cc.substring(0,4);
	  if ((cc.length == 15) &&
	      ((first4digs == "2014") ||
	       (first4digs == "2149")))
	    return isCreditCard(cc);
	  return false;
	}

	/*  ================================================================
	    FUNCTION:  isJCB()
	 
	    INPUT:     cc - a string representing a credit card number

	    RETURNS:  true, if the credit card number is a valid JCB
			    card number.
			    
		      false, otherwise
	    ================================================================ */

	function isJCB(cc)
	{
	  first4digs = cc.substring(0,4);
	  if ((cc.length == 16) &&
	      ((first4digs == "3088") ||
	       (first4digs == "3096") ||
	       (first4digs == "3112") ||
	       (first4digs == "3158") ||
	       (first4digs == "3337") ||
	       (first4digs == "3528")))
	    return isCreditCard(cc);
	  return false;

	} // END FUNCTION isJCB()

	/*  ================================================================
	    FUNCTION:  isAnyCard()
	 
	    INPUT:     cc - a string representing a credit card number

	    RETURNS:  true, if the credit card number is any valid credit
			    card number for any of the accepted card types.
			    
		      false, otherwise
	    ================================================================ */
function isAnyCard(cc)
	{
	  if (!isCreditCard(cc))
	    return false;
//	  if (!isMasterCard(cc) && !isVisa(cc) && !isAmericanExpress(cc) && !isDinersClub(cc) && !isDiscover(cc) && !isEnRoute(cc) && !isJCB(cc)) {
	  if (!isMasterCard(cc) && !isVisa(cc) && !isAmericanExpress(cc) && !isEnRoute(cc) && !isJCB(cc)) {
	    return false;
	  }
	  return true;

	} // END FUNCTION isAnyCard()

	/*  ================================================================
	    FUNCTION:  isCardMatch()
	 
	    INPUT:    cardType - a string representing the credit card type
		      cardNumber - a string representing a credit card number

	    RETURNS:  true, if the credit card number is valid for the particular
		      credit card type given in "cardType".
			    
		      false, otherwise
	    ================================================================ */

	function isCardMatch (cardType, cardNumber)
	{
        //alert (cardType);
        //alert (cardNumber);
		cardType = cardType.toUpperCase();
		var doesMatch = true;

		//if ((cardType == "VISA") && (!isVisa(cardNumber)))
		if ((cardType == "VS") && (!isVisa(cardNumber)))
			doesMatch = false;
		//if ((cardType == "MASTERCARD") && (!isMasterCard(cardNumber)))
		if ((cardType == "MC") && (!isMasterCard(cardNumber)))
			doesMatch = false;
		if ( ( (cardType == "AX") || (cardType == "AX") )
	                && (!isAmericanExpress(cardNumber))) doesMatch = false;
		if ((cardType == "DISCOVER") && (!isDiscover(cardNumber)))
			doesMatch = false;
		if ((cardType == "JCB") && (!isJCB(cardNumber)))
			doesMatch = false;
		if ((cardType == "DINERS") && (!isDinersClub(cardNumber)))
			doesMatch = false;
		if ((cardType == "CARTEBLANCHE") && (!isCarteBlanche(cardNumber)))
			doesMatch = false;
		if ((cardType == "ENROUTE") && (!isEnRoute(cardNumber)))
			doesMatch = false;
		return doesMatch;

	}  // END FUNCTION CardMatch()


	function Test(text)
	{
		alert(text);
	
	}

	function MM_swapImgRestore() { //v3.0
	var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
	}

	function MM_preloadImages() { //v3.0
	var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
		var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
		if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
	}

	function MM_findObj(n, d) { //v4.01
	var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
		d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
	if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
	for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
	if(!x && d.getElementById) x=d.getElementById(n); return x;
	}

	function MM_swapImage() { //v3.0
	var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
	if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
	}

function CheckAll(s)
{
	if( !s )
	{
	  s = "chkLightbox";
	}
	var lb = eval(document.forms["form"]);
	if (lb != null){
		var len = lb.elements.length;
		for (var i = 0; i < len; i++) {
			var e = lb.elements[i];
			if (e.name.indexOf(s) > -1) {
				e.checked = true;
			}
		}
	}
}

function ClearAll(s){
	if( !s )
	{
	  s = "chkLightbox";
	}
	var lb = eval(document.forms["form"]);
	if (lb != null){
		var len = eval(lb.elements.length);

		for (var i = 0; i < len; i++) {
			var e = eval(lb.elements[i]);
			if (e.name.indexOf(s) > -1) {
				e.checked=false;
			}
		}
	}
}

// Adds endsWith function to string types!
String.prototype.endsWith = function(s){
	var reg = new RegExp(s + "$");
	return reg.test(this);
}



// srcObj = whatever form object that you want to check
// illegalCharsReg = all the characters that are illegal for your application
function ChkIllegalChars(srcObj,illegalCharsReg) {
    var regex=new RegExp("[" + illegalCharsReg + "]","i");
    return regex.test(srcObj);
}

	
function JumpMenu(targ,selObj,restore){ 
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function ImageTransferConfirmation()
{
	var _theform;
	var _checked;
	var _len;
	var _element;
	
	_checked = false;
	
	if (window.navigator.appName.toLowerCase().indexOf("microsoft") > -1) {
		_theform = document.form;
	}
	else {
		_theform = document.forms["form"];
	}
	
	if(null != _theform){
		_len = _theform.elements.length;
		
		for(var i = 0; i < _len; i++){
			_element = _theform.elements[i];
			
			if(_element.name.endsWith("chkLightbox")){
				if(_element.checked == true){
					_checked = true;
					break;
				}
			}	
		}
		
		if(_checked == false){
			alert("Please select at least one image to transfer.");
		}
	}
	
	return _checked;
	
}


function UpdateLightBoxInfo(ddlLB, lblNumItemsID, hlLBID) {
	var currentLBI, currentLBTtl;
	var elemPrefix;
	
	if (document.getElementById) // Netscape 6 and IE 5+
    {
		currentLBI = arrLBI[ddlLB.selectedIndex];
		currentLBTtl = arrLBTtl[ddlLB.selectedIndex];

    	hlLBID = GetClientIDFromSibling(ddlLB, hlLBID);
		lblNumItemsID = GetClientIDFromSibling(ddlLB, lblNumItemsID);
	
        document.getElementById(hlLBID).href = "Lightbox.aspx?Mod=V&LBI=" + currentLBI;
        document.getElementById(lblNumItemsID).innerHTML = currentLBTtl;
    }
	//lblNumItemsID.innerHTML = currentLBTtl;
	//hlLBID.href = "Lightbox.aspx?LBI=" + currentLBI;
}

/* Search */
function GetSearchBox()
{
	document.write(mvRemoteMethods.GetSearchBox('').value);
}
function SetSearchOptions(sender, searchMode)
{
	var selSearch = GetControlFromSibling(sender, 'selSearch');
	
	// The following array defines the contain of the search option as (1st_Value, 1st_Text, 2nd_Value......)
	var EditorialOptions = new Array('A','All','C','Caption','I','Image Number','H','Headline','E','Event Number','K','Keyword','P','Photographer','L','Location','V','Venue');
	var VideoOptions = new Array('A','All','C','Caption','I','Video Number','H','Headline','E','Event Number','K','Keyword','P','Videographer','L','Location','V','Venue');
	var CreativeOptions = new Array('K','Keyword','I','Image Number');
	
	// The following defines the color of the checkbox text
	var RF = document.getElementById('RF').style;
	var RM = document.getElementById('RM').style;
	
	var currentOptions = new Array();
	var currentSelectedIndex = 0;
	
	switch(searchMode)
	{
		case 'Editorial':
			setControl(GetClientIDFromSibling(sender, 'chkRightsManaged'), true);
			setControl(GetClientIDFromSibling(sender, 'chkRoyaltyFree'), true);
			selSearch.options.length = 0;
			currentOptions = EditorialOptions;
			currentSelectedIndex = 1; //default selection index for Editorial
			RF.color="#ccc" //Set Checkbox text color
			RM.color="#ccc"
			break;
		case 'Video':
			setControl(GetClientIDFromSibling(sender, 'chkRightsManaged'), true);
			setControl(GetClientIDFromSibling(sender, 'chkRoyaltyFree'), true);
			selSearch.options.length = 0;
			currentOptions = VideoOptions;
			currentSelectedIndex = 1;
			RF.color="#ccc"
			RM.color="#ccc"
			break;
		case 'Creative':
			setControl(GetClientIDFromSibling(sender, 'chkRightsManaged'), false);
			setControl(GetClientIDFromSibling(sender, 'chkRoyaltyFree'), false);
			selSearch.options.length = 0;
			currentOptions = CreativeOptions;
			currentSelectedIndex = 0;
			RF.color="#fff"
			RM.color="#fff"
			break;
		default:
			break;
	}
	
	for(i=0;i<currentOptions.length;i+=2)
	{
		//Update options
		selSearch.options[i/2] = new Option(currentOptions[i+1],currentOptions[i]); 
	}
	selSearch.selectedIndex = currentSelectedIndex; //Set default selected index of search options.
}

function setControl(controlToSet, isDisabled)
{
	var objToDisable
	objToDisable = document.getElementById(controlToSet);
	objToDisable.disabled  = isDisabled;
}

function submit_creative_search(url, inputControl, searchBoxId, ddlTypeId, optionalControlList)
{
	var siblingIds;
	var tempCtl, tempId;
	var tempVal, tempKey;
	var searchBoxCtl, ddlTypeCtl;
	var inputForm;	
	
	if (window.navigator.appName.toLowerCase().indexOf("netscape") > -1) {
		inputForm = document.forms["form"];
	}
	else {
		inputForm = document.form;
	}
	//Find Search Box
	tempId = GetClientIDFromSibling(inputControl, searchBoxId);
	searchBoxCtl = document.getElementById(tempId);
	
	//Find Select Box
	tempId = GetClientIDFromSibling(inputControl, ddlTypeId);
	ddlTypeCtl = document.getElementById(tempId);
	
	//Check Values
	if(searchBoxCtl.value=="") {
		alert('Please type the word or words you\'d like to search for before clicking Search.');
		return false;
		}
		 
	if((isNaN(searchBoxCtl.value)) && ((ddlTypeCtl.value == "I") || (ddlTypeCtl.value == "E"))){
		alert("Please enter a number to search.");
		return false;
	}
	
	if((!(isNaN(searchBoxCtl.value))) && ((ddlTypeCtl.value == "I") || (ddlTypeCtl.value == "E"))){
		if (parseInt(searchBoxCtl.value) > 2147483647) {
			alert("The number you entered is too big.");
			return false;
		}
		if (parseInt(ddlTypeCtl.value) < 0) {
			alert("Please enter a positive number.");
			return false;
		}
	}
	
	
	__mvCleanAction(inputForm, searchBoxCtl.getAttribute('StateKey'), searchBoxCtl.value);
	__mvCleanAction(inputForm, ddlTypeCtl.getAttribute('StateKey'), ddlTypeCtl.value);
	
	
	// Append URL parameters
	url = url + "?str=" + searchBoxCtl.value + "&sfld=" + ddlTypeCtl.value;
	
	// See if collection ID is present
	if(document.getElementById("sbSearch_lblCollection"))
	{
		obj = document.getElementById("sbSearch_lblCollection");
		if(obj.value > 0)
		{
			// Append the collection ID
			url = url + "&Clctn=" + obj.value;
		}
	}	

	var SearchWithIn = document.getElementsByName("sbSearch:pnlSearchWithin:SearchWithin");
	var index;
	var SelectedSearchWithIn = "";
	var type="";
	var chkbxSrchRF = document.getElementById("sbSearch_chkbxSrchRF");
	var chkbxSrchRM = document.getElementById("sbSearch_chkbxSrchRM");
	var OptionSelected = false;
	
	for(index=0; index<SearchWithIn.length; index++)
	{
		if(SearchWithIn[index].checked == true)
		{
			//Assign the value
			SelectedSearchWithIn = SearchWithIn[index].value;
			OptionSelected = true;
			break;
		}
	}
	// rdoNewSearch
	if (SelectedSearchWithIn == "rdoNewSearch")
	{
		url = url;	
	}

	// rdoSearchWithin
	if (SelectedSearchWithIn == "rdoSearchWithin")
	{	
		// Rebuild the search string
		url = "ItemListing.aspx?";
		
		var HidInput=document.getElementById("sbSearch_pnlSearchWithin_hidFirstSearch");
		var str = HidInput.value;
		url = url + "&str=" + str + "&sfld=" + ddlTypeCtl.value + "&substr=" + searchBoxCtl.value;
		
		if(document.getElementById("sbSearch_lblCollection"))
		{
			obj = document.getElementById("sbSearch_lblCollection");
			if(obj.value > 0)
			{
				// Append the collection ID
				url = url + "&Clctn=" + obj.value;
			}
		}	
	
	}
		
	if(chkbxSrchRF.checked == true && chkbxSrchRM.checked == true)
	{type =2;}
	
	if(chkbxSrchRF.checked == true &&  chkbxSrchRM.checked  == false)
	{type = 0;}
	
	if(chkbxSrchRF.checked == false &&  chkbxSrchRM.checked  == true)
	{type = 2;}
	
	// Append the search type
	url = url + "&st=" + type;
	
	inputForm.__VIEWSTATE.value = "";
	inputForm.action = url;
	inputForm.submit();
}


function SubmitPoll(Poll, Rating, Item, Sender)
{
	var result;
	var avgVotesCtl, avgRatingCtl;
	

	avgVotesCtl =  document.getElementById(GetClientIDFromSibling(Sender, "lblNumVotes"));
	avgRatingCtl = document.getElementById(GetClientIDFromSibling(Sender, "lblItemRtng"));
	
	result = mvRemoteMethods.SubmitPoll(Poll, Rating, Item);
	
	var values;
	values = result.value.split(',');
	
	avgRatingCtl.innerHTML = values[0];
	avgVotesCtl.innerHTML = values[1] + ' votes';

}


function CelebRollover(obj, hightlighted){ 
	if (hightlighted){
		obj.style.backgroundColor="#6699cc";
	}
	else{
		obj.style.backgroundColor="";
	}
} 

function ValidateTags(frmObj,tagFieldID,errMssg){
	
	var _fullTagID;
	var _tagObj;
	var _sErrorMessage;
	var _sCharFilter;
	var _sIllegalChars;
	var _divErrObj;
	
	if(frmObj) 
	{
		if (document.getElementById) // Netscape 6 and IE 5+
		{
			_fullTagID = GetClientIDFromSibling(frmObj,tagFieldID);
			_divErrObj = document.getElementById("divTgErr");
			
			_tagObj = document.getElementById(_fullTagID).value; 
			_sErrorMessage = "";
			
			if(ChkIllegalChars(_tagObj,'@#!-$^&*\,()+=\'\"\/')) {
				if(_divErrObj)
					_divErrObj.innerHTML = errMssg;
				return false;	
			}
			_divErrObj.innerHTML = "";
			return true
		}
	}
	
	return false;
}

/* Tagging */
var tagObject=[];
var yourTags="";

function UpdateTagTextbox(tagCtl, tagContainer)
{
	var tagId = tagCtl.id;
	
	var tagContainerString = document.getElementById(tagContainer).value;
	var tagSelected = document.getElementById(tagId).innerHTML+" ";
	
	if(tagContainerString.search(tagSelected)<0)
	{
		if(tagContainerString.charAt(tagContainerString.length-1)!=" ")document.getElementById(tagContainer).value+=" ";
		document.getElementById(tagContainer).value+=tagSelected;
		//To highlight multiple tags
		for(i=0;i<tagIDList.length;i++)
 		{
			if((tagObject[i]+" ")==tagSelected)
			{
				document.getElementById(tagIDList[i]).className="tagged";
			}
		}
	}
	else
	{
		document.getElementById(tagContainer).value=tagContainerString.replace(tagSelected,"")
		//To unhighlight multiple tags
		for(i=0;i<tagIDList.length;i++)
 		{
			if((tagObject[i]+" ")==tagSelected)
			{
				document.getElementById(tagIDList[i]).className="tag";
			}
		}		
	}
}

function tags(tag, tagContainer)
{
	var tagContainerString = document.getElementById(tagContainer).value;
	var tagSelected = document.getElementById(tag).innerHTML+" ";
	if(tagContainerString.search(tagSelected)<0)
	{
		if(tagContainerString.charAt(tagContainerString.length-1)!=" ")document.getElementById(tagContainer).value+=" ";
		document.getElementById(tagContainer).value+=tagSelected;
		//To highlight multiple tags
		for(i=0;i<tagIDList.length;i++)
 		{
			if((tagObject[i]+" ")==tagSelected)document.getElementById(tagIDList[i]).className="tagged";
		}
	}
	else
	{
		document.getElementById(tagContainer).value=tagContainerString.replace(tagSelected,"")
		//To unhighlight multiple tags
		for(i=0;i<tagIDList.length;i++)
 		{
			if((tagObject[i]+" ")==tagSelected)document.getElementById(tagIDList[i]).className="tag";
		}		
	}
}

function buildTagList()
{
	for(i=0;i<tagIDList.length;i++)
	{
		tag=document.getElementById(tagIDList[i]).innerHTML;
		tagObject.push(tag);
	}
}


function removeTag(frmObj, tagBlock, tag)
{
 //alert('test');
  var d = document.getElementById('yourtag');
  var olddiv = document.getElementById(GetClientIDFromSibling(frmObj,tagBlock));
  document.getElementById(GetClientIDFromSibling(frmObj,tag)).style.textDecoration="line-through";
  document.getElementById(GetClientIDFromSibling(frmObj,tag)).style.color="#ccc";
  // Start Ajax Call here, if return true, excute the following line.
		for(i=0;i<tagIDList.length;i++)
 		{
			if(tagIDList[i]==GetClientIDFromSibling(frmObj,tag))
			{
				tagObject[i]="";
			}
		}
	var theform;
	var currentID;
	var result;
	var tgCtl;

	if (window.navigator.appName.toLowerCase().indexOf("microsoft") > -1) {
		theform = document.form;
	}
	else {
		theform = document.forms["form"];
	}

	if(frmObj) 
	{
		if (document.getElementById) // Netscape 6 and IE 5+
		{
			tgCtl =  document.getElementById(GetClientIDFromSibling(frmObj,tag)).innerHTML;
			try {
				currentID = theform.currentItemI.value;
			}
			catch(e) {
				currentID = theform.currentItem.value;
			}
			result = mvRemoteMethods.RemoveTags(currentID, tgCtl);
			
		}
	}


  d.removeChild(olddiv);
}
function AddTags(frmObj, tagBlock, tgTextBox) 
{
	AddTags(frmObj, tagBlock, tgTextBox, null);
}

function AddTags(frmObj, tagBlock, tgTextBox, tagContainer)
{
	var tags;
	var inputCtl;
	var theform;
	var currentID;
	var result;
	
	if (window.navigator.appName.toLowerCase().indexOf("microsoft") > -1) {
		
		theform = document.form;
	}
	else {
		theform = document.forms["form"];
	}
	
	
	try {
		currentID = theform.currentItem.value;
	}
	catch(e) {
		currentID = theform.currentItemI.value;
	}
	
	inputCtl = document.getElementById(GetClientIDFromSibling(frmObj, tgTextBox));
	tags= inputCtl.value;
	

	result = mvRemoteMethods.AddTags(currentID, tags, tagContainer, tagContainer);

	inputCtl.value = '';
	
	var tagRegion;
	
	tagRegion = document.getElementById('divTagRegion');
	
	tagRegion.innerHTML = result.value[0];
	
	
	tagIDList = result.value[1].split(',');
	tagObject=[];
	buildTagList();
	
}
/* End Tagging */

/* Special Events AJAX Support */

function GetSpecialEventListing(SpecialEventID)
{
	var theform;
	if (window.navigator.appName.toLowerCase().indexOf("netscape") > -1) {
		theform = document.forms["form"];
	}
	else {
		theform = document.form;
	}
	
	theform.action = "\SpecialEvents.aspx"
	CallAJAXFunction("mvRemoteMethods.GetSpecialEventListing", "e", SpecialEventID, false)
}

function CallAJAXFunction_Callback(result)
{
	document.getElementById("divGG").innerHTML = result.value;		
}

function ShowStatusMessage()
{
	divMain = document.getElementById("divGG");
	divMain.innerHTML = '<font class="smBoldTxt">Loading, please wait...</font>&nbsp;<img align="middle" border="0" src="/images/loading.gif" />';
}

function CallAJAXFunction(ClientCallBackFunction, CommandName, CommandArgument, PersistState)
{
	var divMain, spanStatus;
	var result;

	var theform;
	if (window.navigator.appName.toLowerCase().indexOf("netscape") > -1) {
		theform = document.forms["form"];
	}
	else {
		theform = document.form;
	}
	
	__mvCleanAction(theform, CommandName, CommandArgument);
	ShowStatusMessage();
	
	if(navigator.userAgent.indexOf('Safari') != -1){
		ajaxResult = eval(ClientCallBackFunction + "('" + theform.action + "')");
		CallAJAXFunction_Callback(ajaxResult);
	}
	else
	{	
		result=eval(ClientCallBackFunction + "('" + theform.action + "'," + CallAJAXFunction_Callback + ")")
	}
}

/* End Special Events AJAX Support */

/* Begin Grid Functions */
var currentGridSize;

//Grid Object define the image and dev container
function grid(id, idx)
{
	this.devId= id + idx;
	this.divObject=document.getElementById(this.devId);
	
	this.imageId= id + '_img' + idx;
	this.imageObject=document.getElementById(this.imageId);	
	this.image200=new Image();  
	this.image200.src; //for 200px
	this.image200loaded=false;
	this.image170=new Image();
	this.image170.src; //for 170px
	this.image170loaded=false;
	this.image128=new Image();;
	this.image128.src; //for 128px	
	this.image128loaded=false;
	this.image90=new Image();;
	this.image90.src;  // for 90px	
	this.image90loaded=false;	
	this.imageHeight=this.imageObject.height;
	this.imageWidth=this.imageObject.width;
		
	this.controlId= id + '_info' + idx;
	this.controlObject=document.getElementById(this.controlId);
}

//Gallery Grid Initiation 
var gridList;
var gridItem = new Array();

function InitializeGrid(gridId, gridSize, itemLength)
{
    gridList = new Array();
    for (i=0;i< itemLength; i++)
    {
        gridList.push(i);
    }
    
	currentGridSize = gridSize;
	for (i=0; i<gridList.length; i++)
	{
		gridItem[i] = new grid(gridId, gridList[i]);
	}
}

var lastGrid;
//Set new grid size
function setGrid(gridSize)
{
	if (document.cookie.indexOf('tns') == -1 ) 	
	{ 
   		SetCookie('tns',gridSize, 365);
		activeOn(gridSize);
	} 
	else 
	{
		lastGrid = ReadCookie('tns');
			if (lastGrid==gridSize)
			{
				activeOn(gridSize);
			}
			else
			{
				SetCookie('tns',gridSize, 365);
				activeOn(gridSize);
				activeOff(lastGrid);
			}
	}
    
	//currentGridSize=gridSize;
	for (i=0; i<gridList.length; i++)
	{
		resizeDev(i,gridSize);//Resize the grid container
		resizeImage(i,gridSize);//Resize the image
	}
	for (i=0; i<gridList.length; i++)
	{
		reloadImage(i,gridSize);//Replace the new image with updated resolution
	}	
	
}

function activeOn(gridSize){
var curElem = document.getElementById("resize_"+gridSize);
var curSize = ReadCookie('tns');
curElem.className = "iconOn"+curSize;
}	
function activeOff(lastGrid){
var curElem = document.getElementById("resize_"+lastGrid);
curElem.className = "icon"+lastGrid;
}

//URL for image is tnm = medium (170), tnl = large (200), thumbnail = small (128)
function reloadImage(gridId, gridSize)
{
	var thisGrid=gridItem[gridId];
	switch(gridSize)
	{
	case 200:
		{
			if(!thisGrid.image200loaded)
			{
				thisGrid.image200=new Image();
				thisGrid.image200.src=thisGrid.imageObject.src.replace(/tnl|tnm|thumbnail/gi, "tnl")
				image200loaded=true;
			}
			thisGrid.imageObject.src=thisGrid.image200.src;	
		}
		break    
	case 170:
		{
			if(!thisGrid.image170loaded)
			{
				thisGrid.image170=new Image();
				thisGrid.image170.src=thisGrid.imageObject.src.replace(/tnl|tnm|thumbnail/gi, "tnm")
				image170loaded=true;
			}
			thisGrid.imageObject.src=thisGrid.image170.src;	
		}
		break    
	case 128:
		{
			if(!thisGrid.image128loaded)
			{
				thisGrid.image128=new Image();		
				thisGrid.image128.src=thisGrid.imageObject.src.replace(/tnl|tnm|thumbnail/gi, "thumbnail")
				image128loaded=true;
			}
			thisGrid.imageObject.src=thisGrid.image128.src;	
		}
		break    
	case 90:
		{
		
		}
		break  		
	}
}

//Resize grid size by changing the css class
function resizeDev(gridId, gridSize)
{
	var thisGrid=gridItem[gridId];
	thisGrid.divObject.className="FFGrid"+gridSize;
	thisGrid.controlObject.className="FFGrid_info"+gridSize;
}

//Resize image size by the predefined data – “imageSize”
function resizeImage(gridId, gridSize)
{
	var thisGrid=gridItem[gridId];
	//Aspect ratio of the image, width divided by height
	var aspectRatio = thisGrid.imageObject.width/thisGrid.imageObject.height;
	
	if(thisGrid.imageObject.width>thisGrid.imageObject.height)
	{
		thisGrid.imageObject.width=gridSize;
		thisGrid.imageObject.height=gridSize/aspectRatio;
	}
	else
	{
		thisGrid.imageObject.height=gridSize;
		thisGrid.imageObject.width=gridSize*aspectRatio;
	}	
}

/* End Grid Functions */

function setOpener(href)
{
	if (window.opener && !window.opener.closed)
	{
		window.opener.document.location = href;
	}
}

//Capture all keystroke from user input
document.onkeydown = checkDefaultAction;
document.onmousedown = function(){disableSubmit=false;}; //Enable form submit when user click the mouse
var defaultAction = "";
var disableSubmit = false;

function loadFormEvent(){
	if(document.forms.length>0) {
	 	for (i=0; i<document.forms.length; i++) {
	 		document.forms[i].onsubmit = function(){if(disableSubmit) return false;};  
		}
	}
}

function checkDefaultAction(e) {
	var keynum;
	if(window.event) { // IE
		keynum = window.event.keyCode
	}
	else if(e) { // Netscape/Firefox/Opera
		keynum = e.which
	}
	
	if(keynum==13) { 
		disableSubmit = true;  //Disable form submit when user press enter key
		loadFormEvent()  //Register ALL form onsubmit event.
		doDefaultAction()
	}
}

//Setting Default action if the html object is focus 
function setDefaultAction(htmlObject, defaultActionString) {
	defaultAction=defaultActionString;     
	htmlObject.onblur=function(){defaultAction="";}; //Register onBlur event and remove default action is not focused
}

function doDefaultAction() {eval(defaultAction);}
//  End -->

//SearchBox support
function searchObject(){
	//Seacrh Form Objects initiated at submit
	this.form;			
	this.editorial; 	
	this.video; 		
	this.creative; 		
	this.searchStr; 	
	this.searchOpt; 	
	this.royaltyFree;	
	this.rightsManaged;	
	this.searchNew;
	this.searchWithin;
	this.searchWithinText; 
	this.searchRestrict;
	this.viewState;
	
	//Predefined URL for different search modes
	this.editorialUrl 		= '/GalleryListing.asp?';	
	this.editorialCaptionUrl= '/SearchResults.aspx?';
	this.editorialWithNumUrl= '/ItemDescription.asp?';
	this.videoUrl 			= '/GalleryListing.asp?';
	this.videoWithNumber	= 'http://video.wireimage.com/mvMediaPlayer.asp?';
	this.creativeUrl 		= '/ItemListing.aspx?';

	//Predefined Base Path for Query String - TEMPORARY FIX.
	//If "download" is found in the location.hostname, then use absolute path 
	this.basePath			= (self.location.hostname.search(/(download|secure)/gi)==(-1))?'':'http://www.wireimage.com';
	
	//Predefined Parameter for Query String
	this.navType			= 'navtyp=SRH';
	this.eventSearch		= 'navtyp=gls====';	
	this.itemSearch			= 'ItemI=';	
	this.vItemSearch1		= 'ItemI=';	
	this.vItemSearch2		= '%20%20&ci=1&PItemI=';	
	this.vItemSearch3		= '%20%20-H85W128&NItemI=';	
	this.vItemSearch4		= '%20%20-H85W128&bi=1&ei=1&rc=1&df=1&pl=1&isCL04F=1';		
	this.logSearch			= '&logsrch=1';

	this.editorialSearch	= '&nbc1=1';
	this.videoSearch		= '&nbc1=17';
	this.searchStringHeader	= '&str=';
	this.searchOptionHeader	= '&sfld=';
	this.searchTypeHeader	= '&st=';
	this.subStringHeader	= '&substr='
	
	//Paraemeter for Query String
	this.searchStringValue;
	this.searchTypeValue;
	this.subStringValue;
	
	//Query String
	this.queryString		='';
	
	//Error Page
	this.loginReminder		='\/PopupDoc.asp?doctyp=login'
}

searchObject.prototype.build = function()
{
	//Determine if searchWithin is allowed by search options
	var searchWithinAllowed=false; 
	
	//Editorial Photos Search
	if(this.editorial.checked){
		switch(this.searchOpt.value) {
		//by Image Number
		case "I":
			this.queryString+=(this.editorialWithNumUrl+this.itemSearch+this.searchStr.value+this.editorialSearch);
			searchWithinAllowed=false; 
			break;
		//by Event Number
		case "E":
			this.queryString+=(this.editorialUrl+this.eventSearch+this.searchStr.value+this.editorialSearch);
			searchWithinAllowed=false; 
			break;
		//by other
		case "C":
			this.queryString+=(this.editorialCaptionUrl+this.navType+this.searchOptionHeader+this.searchOpt.value+
							   this.logSearch+'&s=');
			searchWithinAllowed=true; 
			break;
		//by other
		default:
			this.queryString+=(this.editorialUrl+this.navType+this.searchOptionHeader+this.searchOpt.value+
							   this.logSearch+this.editorialSearch+this.searchStringHeader);
			searchWithinAllowed=true; 
			break;
		}
	}
	
	//Entertainment Videos Search
	if(this.video.checked) {
		switch(this.searchOpt.value) {
		//by Video Number
		case "I":
			this.queryString+=(this.videoWithNumber+this.vItemSearch1+this.searchStr.value+this.vItemSearch2+
							   this.searchStr.value+this.vItemSearch3+this.searchStr.value+this.vItemSearch4);
			searchWithinAllowed=false; 
			break;
		//by Event Number
		case "E":
			this.queryString+=(this.videoUrl+this.navType+this.searchOptionHeader+this.searchOpt.value+
							   this.logSearch+this.videoSearch+this.searchStringHeader+this.searchStr.value);
			searchWithinAllowed=false; 
			break;
		//by other
		default:
			this.queryString+=(this.videoUrl+this.navType+this.searchOptionHeader+this.searchOpt.value+
							   this.logSearch+this.videoSearch+this.searchStringHeader);
			searchWithinAllowed=true; 
			break;
		}			
	}
	
	//Creative Photos Search
	/*
	if(this.creative.checked) {
			this.queryString+=(this.creativeUrl+this.searchOptionHeader+this.searchOpt.value);
			//Search Both	
			if(this.rightsManaged.checked&&this.royaltyFree.checked) 
				this.queryString+=(this.searchTypeHeader+2);
			//Search Rights Managed Only
			else if(this.rightsManaged.checked)							
				this.queryString+=(this.searchTypeHeader+1);
			//Search Royalty Free Only
			else if(this.royaltyFree.checked)							
				this.queryString+=(this.searchTypeHeader+0);				
			this.queryString+=(this.searchStringHeader);
			searchWithinAllowed=true; 
	}
	*/
	
	//Search Within
	if(searchWithinAllowed)	{
		switch(this.searchWithin.checked) {
		case true:
			this.queryString+=(this.searchWithinText.value+this.subStringHeader+this.searchStr.value);
		break;
		case false:
    		this.queryString+=(this.searchStr.value);
		break;
		}
	}	
}

//Verify if the search string is valid
searchObject.prototype.verify = function()
{
 	var verified = true;
	var errorMessage = "Your search cannot go through because of the following reason(s):\n\n"
	var errorCounter = 0;
	this.searchStr.style.border = "#ccc 1px solid";
	//this.royaltyFree.style.border = "none";
	//this.rightsManaged.style.border = "none";
	
	//Check if the search string is empty or hasn't been changed
	if (((!searchStringChanged)&&(this.searchStr.value=="Search"))||(this.searchStr.value=="")) {
		errorCounter++;	
		errorMessage+='('+errorCounter+')'+' Please type the word(s) or number you\'d like to search.\n';
		this.searchStr.style.border="2px solid #F00";
	}
	
	//Check if the search string is invalid for the selected option
	if (((isNaN(this.searchStr.value))||(parseInt(this.searchStr.value) < 0)||(this.searchStr.value=="")) && (this.searchOpt.value == "I")) {
		errorCounter++;
		if(this.editorial.checked)
			errorMessage+='('+errorCounter+')'+' Image number should be a positive number.\n';
		else
			errorMessage+='('+errorCounter+')'+' Video number should be a positive number.\n';
		
		this.searchStr.style.border="2px solid #F00";
	}
	
	if (((isNaN(this.searchStr.value))||(parseInt(this.searchStr.value) < 0)||(this.searchStr.value=="")) && (this.searchOpt.value == "E"))	{
		errorCounter++;
		errorMessage+='('+errorCounter+')'+' Event number should be a positive number.\n';
		this.searchStr.style.border="2px solid #F00";
	}
	
	//Check if at least one royalty type is selected for Creative
	/*
	if ((!this.royaltyFree.checked)&&(!this.rightsManaged.checked)&&(this.creative.checked)) {
		errorCounter++;
		errorMessage+='('+errorCounter+')'+' Please select at least one Royalty type.\n';
		this.royaltyFree.style.border="1px solid #F00";
		this.rightsManaged.style.border="1px solid #F00";
	}
	*/	
	
	//Restrict Anonymous user can do caption search only, except Creative
	if((this.searchRestrict.value!=this.searchOpt.value)&&(this.searchRestrict.value!="")) {
		verified=false;
		loginAlert=window.open(this.loginReminder,'loginAlert','resize=no,toolbar=no,scrollbars=no,width=400,height=400');
		loginAlert.focus();
	}
	//Display error message if error found
	else if(errorCounter>0) {
		verified=false;
		alert(errorMessage);
	}
	
	return verified;
}

//Initialize search object 
searchObject.prototype.initialize = function(inputControl, form, searchStr, searchOpt, editorial, video, creative, royaltyFree, rightsManaged,  searchNew, searchWithin, searchWithinText,searchRestrict)
{
	this.form 				= document.getElementById(form);
	this.searchStr 			= document.getElementById(GetClientIDFromSibling(inputControl, searchStr));
	this.searchOpt 			= document.getElementById(GetClientIDFromSibling(inputControl, searchOpt));
	this.editorial 			= document.getElementById(GetClientIDFromSibling(inputControl, editorial));
	this.video 				= document.getElementById(GetClientIDFromSibling(inputControl, video));
	this.creative 			= document.getElementById(GetClientIDFromSibling(inputControl, creative));
	this.royaltyFree 		= document.getElementById(GetClientIDFromSibling(inputControl, royaltyFree));
	this.rightsManaged 		= document.getElementById(GetClientIDFromSibling(inputControl, rightsManaged));
	this.searchNew			= document.getElementById(searchNew);
	this.searchWithin		= document.getElementById(searchWithin);
	this.searchWithinText	= (document.getElementsByName(searchWithinText).length>0)?document.getElementsByName(searchWithinText)[0]:"";
	this.searchRestrict		= (document.getElementsByName(searchRestrict).length>0)?document.getElementsByName(searchRestrict)[0]:"";
	this.viewState			= (document.getElementsByName("__VIEWSTATE").length>0)?document.getElementsByName("__VIEWSTATE")[0]:"";
}

//Perform Search with popup option
searchObject.prototype.doAction = function()
{
	//Use pop-up window to perform video itme search, then focus the window.
	if(this.video.checked&&(this.searchOpt.value=="I")){
		videoWindow=window.open(this.queryString,'videoWindow','resize=no,toolbar=no,scrollbars=no,width=800,height=600');
		videoWindow.focus();
	}
	//Use existing window for all other types.
	else
	{
		this.form.action = this.basePath + this.queryString;
		// wiping out viewstate
		if((this.viewState !=null) && (this.viewState !=""))
			this.viewState.value = "";
		this.form.submit();
	}
}

function submitSearch(inputControl, form, searchStr, searchOpt, editorial, video, creative, royaltyFree, rightsManaged, searchNew, searchWithin, searchWithinText,searchRestrict){
	searchQuery= new searchObject();
	searchQuery.initialize(inputControl, form, searchStr, searchOpt, editorial, video, creative, royaltyFree, rightsManaged, searchNew, searchWithin, searchWithinText,searchRestrict);
	if(searchQuery.verify()) {
		searchQuery.build();
		searchQuery.doAction();
	}
}

function lockDropDown(bLockOrNot){
	var searchWithinType = (document.getElementsByName("searchWithinType").length>0)?document.getElementsByName("searchWithinType")[0].value:"";
	var searchOption = document.getElementById("sbSearch_selSearch")
	var theLength = searchOption.options.length;
	searchOption.disabled= bLockOrNot;
	if(bLockOrNot)
	{
		for (i=0; i < theLength; i++){	
			if (searchOption.options[i].value == searchWithinType){
				searchOption.options[i].selected=true;
			}
		}
	}
}

var defaultSearchMode;
function InitSearch(searchMode)
{
	var rbSearchOption;
	defaultSearchMode = searchMode;
	switch(defaultSearchMode)
	{
		case 'Editorial':
			rbSearchOption = document.getElementById('sbSearch_rbSrchEditorial');		
			break;
		case 'Video':
			rbSearchOption = document.getElementById('sbSearch_rbSrchVideo');
		break;
		/*case 'Creative':
			rbSearchOption = document.getElementById('sbSearch_rbSrchCreative');
			break;
		*/
		default:
		    rbSearchOption = document.getElementById('sbSearch_rbSrchEditorial');		
			break;
	}
	rbSearchOption.checked = true;
	//Set Search Options and radio button based on the hidden field
	SetSearchOptions(rbSearchOption, searchMode);
	//Update Ssearchwithin label if hidden field value is present
	searchWithinLabel= document.getElementById("searchWithinLabels");
	try {
		var searchWithinText = (document.getElementsByName("searchWithinText").length>0)?document.getElementsByName("searchWithinText")[0].value:"";
		if (searchWithinText != "")
			{
				searchWithinLabel.innerHTML = "Search within results for "+searchWithinText
				lockDropDown(true);
			}		
	}
	catch(e){}
	//Temporary Fixes for new requirement
	/*
	try {
		var searchType = (document.getElementsByName("searchType").length>0)?document.getElementsByName("searchType")[0].value:"";
		if (searchType == "new")
			{
				document.getElementById("searchNew").checked=true;
			}		
	}
	catch(e){}	
	*/
	document.getElementById("searchNew").checked=true;
	lockDropDown(false);
	//Temporary Fixes End here
}

function SetSearchOptions(sender, searchMode)
{
	var selSearch = GetControlFromSibling(sender, 'selSearch');
	
	// The following array defines the contain of the search option as (1st_Value, 1st_Text, 2nd_Value......)
	var EditorialOptions = new Array('A','All','C','Caption','I','Image Number','H','Headline','E','Event Number','K','Keyword','P','Photographer','L','Location','V','Venue');
	var VideoOptions = new Array('A','All','C','Caption','I','Video Number','H','Headline','E','Event Number','K','Keyword','P','Videographer','L','Location','V','Venue');
	//var CreativeOptions = new Array('K','Keyword','I','Image Number');
	
	// The following defines the color of the checkbox text
	//var RF = document.getElementById('RF').style;
	//var RM = document.getElementById('RM').style;
	
	// The following defines the status of the search within
	var searchWithin = document.getElementById("searchWithin");
	var searchNew = document.getElementById("searchNew");
	var newSearchLabels = document.getElementById("newSearchLabels").style;
	var searchWithinLabels = document.getElementById("searchWithinLabels").style;	
	var searchWithinOption = document.getElementById("searchWithinOption").style;
	var moreSearchOption = document.getElementById("moreSearchOption").style;
	var moreSearchOptionArrow = document.getElementById("moreSearchOptionArrow").style;
	
	var currentOptions = new Array();
	var currentSelectedIndex = 0;
	switch(searchMode)
	{
		case 'Editorial':
			//setControl(GetClientIDFromSibling(sender, 'chkRightsManaged'), true);
			//setControl(GetClientIDFromSibling(sender, 'chkRoyaltyFree'), true);
			moreSearchOptionArrow.visibility = "visible";  
			moreSearchOption.visibility = "visible"; 
			selSearch.options.length = 0;
			currentOptions = EditorialOptions;
			currentSelectedIndex = 1; //default selection index for Editorial
			//RF.color="#ccc" //Set Checkbox text color
			//RM.color="#ccc"
			break;
		case 'Video':
			//setControl(GetClientIDFromSibling(sender, 'chkRightsManaged'), true);
			//setControl(GetClientIDFromSibling(sender, 'chkRoyaltyFree'), true);
			moreSearchOptionArrow.visibility = "hidden";  
			moreSearchOption.visibility = "hidden"; 	
			selSearch.options.length = 0;
			currentOptions = VideoOptions;
			currentSelectedIndex = 1;
			//RF.color="#ccc"
			//RM.color="#ccc"
			break;
		/*case 'Creative':
			//setControl(GetClientIDFromSibling(sender, 'chkRightsManaged'), false);
			//setControl(GetClientIDFromSibling(sender, 'chkRoyaltyFree'), false);
			moreSearchOptionArrow.visibility = "hidden";  
			moreSearchOption.visibility = "hidden"; 			
			selSearch.options.length = 0;
			currentOptions = CreativeOptions;
			currentSelectedIndex = 0;
			//RF.color="#fff"
			//RM.color="#fff"
			break;
		*/
		default:
		    moreSearchOptionArrow.visibility = "visible";  
			moreSearchOption.visibility = "visible"; 
			selSearch.options.length = 0;
			currentOptions = EditorialOptions;
			currentSelectedIndex = 1; 
			break;
	}
	
	for(i=0;i<currentOptions.length;i+=2)
	{
		//Update options
		selSearch.options[i/2] = new Option(currentOptions[i+1],currentOptions[i]); 
	}
	selSearch.selectedIndex = currentSelectedIndex; //Set default selected index of search options.
	
	//Update Ssearchwithin label if hidden field value is present
	try {
		var searchWithinText = (document.getElementsByName("searchWithinText").length>0)?document.getElementsByName("searchWithinText")[0].value:"";
	}
	catch(e){
		var searchWithinText = "";
	}

	// To disable the search within option if other search type is selected
	if((searchMode==defaultSearchMode)&&(searchWithinText!=""))
	{
		searchWithinOption.visibility = "visible";  
		searchWithin.disabled	= false;
		searchNew.disabled		= false;
		searchWithin.checked	= true;
		lockDropDown(true);
	}
	else
	{
		searchWithinOption.visibility = "hidden";   
		searchWithin.disabled	= true;
		searchNew.disabled		= true;
		searchNew.checked		= true;
		lockDropDown(false);
		
	}	
}

var searchStringChanged = false;
function resetSearch(searchBox){
	if(!searchStringChanged) //Not to empty if re-visit
	{
		searchBox.value="";
	}
	searchStringChanged = true;
}
// End Search Box Support
//Begin Menu Support
defaultMenu="";
var isIE =document.all; //IE detection for bug fix - IE6 form element and position error
var isMac=(navigator.platform.search(/(mac)/gi)!=(-1)); //Mac detection for bug fix - IE5.1 Mac support

var delay_hide=500  // 0.5 second timer to delay the hidding
var delayhideSub, delayhide;

var menuSubFocused="";
var menuobj;
var menuobjShim;
var menuobjSub;
var menuobjShimSub;
var menuContentCache = new Array();

function initiatilzeMenu()
{
	menuobj=document.getElementById("menuContainer");
	menuobjShim = document.getElementById('menuContainerShim');
	menuobjSub=document.getElementById("menuContainerSub");
	menuobjShimSub = document.getElementById('menuContainerShimSub');
	try{
		menuContentCache=legacyMenuObj;
	}
	catch(e){
		menuContentCache=mvRemoteMethods.GetAllMenus().value;
	}
}

function hideMenuWithDelay(){
	if (window.delayhide)
		clearTimeout(delayhide)
	if (window.delayhideSub)
		clearTimeout(delayhideSub)
}

function getMenuContent(CtgyI, CtgyLvl){
	var menuContentCacheIndex = 0;
	var counter = 0;
	var menuContentIsCached = false;
	var menuContent = "";
	var result;

	if(CtgyI!="default"){
		//Preload dropdown menu
		while((counter<menuContentCache.length)&&(!menuContentIsCached)){
			if(menuContentCache[counter][0]==CtgyLvl + "_" + CtgyI){ //Check if the menu content is cached periously
				menuContentCacheIndex = counter;
				menuContentIsCached = true;
			}
			counter++;
		}
		return menuContentCache[menuContentCacheIndex][1];
	}
	else{
		return defaultMenu;
	}
}

function showTopMenu(which, menuStyle){

	hideMenuWithDelay();
	hideSubMenuNow();
	menuobj.className = menuStyle;
	menuobj.innerHTML=getMenuContent(which, '1');
 	//Set Shim location and size using menuobj if IE
 	if (isIE&&(!isMac)){
		menuobjShim.className = menuStyle;	
		menuobjShim.style.width = menuobj.clientWidth; 
		menuobjShim.style.height = menuobj.clientHeight; 
		menuobjShim.style.zIndex = 9;
	}
}

function hideTopMenu(e){
	delayhide=setTimeout("hideTopMenuNow()",delay_hide)
}

function hideTopMenuNow()
{
	hideMenuWithDelay()
	menuobj.className='default';
 	if (isIE&&(!isMac)){
		menuobjShim.className='default';
	}
	menuobj.innerHTML=""
	hideSubMenuNow()
}

function showSubMenu(menu, which, parentCategoryName){
	var currentY=menu.offsetTop; 
	var currentX=menu.offsetParent.offsetParent.offsetLeft+menu.offsetParent.offsetWidth-1;
	var offsetY=0;
	var originalY=document.getElementById('wireimage').offsetTop+51;
	var browserH=(window.innerHeight)?window.innerHeight:document.body.clientHeight;
	var scrolledDown=(window.scrollY)?window.scrollY:document.body.scrollTop;
	var remainY=browserH-originalY+scrolledDown-currentY;
	hideMenuWithDelay()
	menuSubFocused=which;
	if(menuSubFocused!='0'){
		menuobjSub.innerHTML=getMenuContent(which, '2');
		offsetY=remainY-menuobjSub.offsetHeight;
		if(menuobjSub.offsetHeight<browserH){
			if(offsetY>0)offsetY=0;
			currentY+=offsetY;
		}
		else{
			currentY=-originalY+scrolledDown;
		}
		menuobjSub.className=parentCategoryName + 'SubMenu';		
		menuobjSub.style.top=currentY+"px";
		menuobjSub.style.left=currentX+"px";
		
//Set Shim location and size using menuobjSub if IE
 		if (isIE&&(!isMac)){ 	
			menuobjShimSub.className=parentCategoryName + 'SubMenu';	
			menuobjShimSub.style.width=menuobjSub.clientWidth; 
			menuobjShimSub.style.height=menuobjSub.clientHeight;	
			menuobjShimSub.style.top=menuobjSub.style.top;
			menuobjShimSub.style.left=menuobjSub.style.left;
			menuobjShimSub.style.zIndex = 99;
		}	
	}	
	else hideSubMenuNow();
}

function hideSubMenu(e){
	delayhideSub=setTimeout("hideSubMenuNow()",delay_hide)
}

function hideSubMenuNow(){

	hideMenuWithDelay()
	menuobjSub.className='default';
 	if (isIE&&(!isMac)){	
		menuobjShimSub.className='default';
	}
	menuobjSub.innerHTML=""
	
	if(menuSubFocused!='0')
	{
		menuobj.className='default';
		if (isIE&&(!isMac)){			
			menuobjShim.className='default';
		}		
		menuSubFocused='';
	}	
}
//
//AJAX- Hardecoded ajax/WireImageRM.ashx
var mvRemoteMethods = {
SubmitPoll:function(objPollI,objRating,objItemI,callback,context){return new ajax_request(this.url + '?_method=SubmitPoll&_session=no','objPollI=' + enc(objPollI)+ '\r\nobjRating=' + enc(objRating)+ '\r\nobjItemI=' + enc(objItemI),callback, context);},
LoadDailyTopPhotos:function(ItemI,topPhotosIdx,callback,context){return new ajax_request(this.url + '?_method=LoadDailyTopPhotos&_session=no','ItemI=' + enc(ItemI)+ '\r\ntopPhotosIdx=' + enc(topPhotosIdx),callback, context);},
LoadMostEmailedPhotos:function(ItemI,mostEmailedPhotosIdx,callback,context){return new ajax_request(this.url + '?_method=LoadMostEmailedPhotos&_session=no','ItemI=' + enc(ItemI)+ '\r\nmostEmailedPhotosIdx=' + enc(mostEmailedPhotosIdx),callback, context);},
RemoveTags:function(itemI,tags,callback,context){return new ajax_request(this.url + '?_method=RemoveTags&_session=no','itemI=' + enc(itemI)+ '\r\ntags=' + enc(tags),callback, context);},
AddTags:function(ItemI,tags,tagContainer,callback,context){return new ajax_request(this.url + '?_method=AddTags&_session=no','ItemI=' + enc(ItemI)+ '\r\ntags=' + enc(tags)+ '\r\ntagContainer=' + enc(tagContainer),callback, context);},
SubmitDailyPoll:function(objPollI,objRating,callback,context){return new ajax_request(this.url + '?_method=SubmitDailyPoll&_session=no','objPollI=' + enc(objPollI)+ '\r\nobjRating=' + enc(objRating),callback, context);},
GetSpecialEventListing:function(ActionArgs,callback,context){return new ajax_request(this.url + '?_method=GetSpecialEventListing&_session=no','ActionArgs=' + enc(ActionArgs),callback, context);},
GetAllMenus:function(callback,context){return new ajax_request(this.url + '?_method=GetAllMenus&_session=no','',callback, context);},
GetSubCategoryMenu:function(CtgyI,CtgyLvl,callback,context){return new ajax_request(this.url + '?_method=GetSubCategoryMenu&_session=no','CtgyI=' + enc(CtgyI)+ '\r\nCtgyLvl=' + enc(CtgyLvl),callback, context);},
GetSearchBox:function(SearchWithinTerm,callback,context){return new ajax_request(this.url + '?_method=GetSearchBox&_session=no','SearchWithinTerm=' + enc(SearchWithinTerm),callback, context);},
AddBulkDownload:function(DwldTypC,DwldTypVal,callback,context){return new ajax_request(this.url + '?_method=AddBulkDownload&_session=no','DwldTypC=' + enc(DwldTypC)+ '\r\nDwldTypVal=' + enc(DwldTypVal),callback, context);},
AddBulkDownloadItems:function(XMLSource,ItemRsltnI,EncryptedBlkDwldI,callback,context){return new ajax_request(this.url + '?_method=AddBulkDownloadItems&_session=no','XMLSource=' + enc(XMLSource)+ '\r\nItemRsltnI=' + enc(ItemRsltnI)+ '\r\nEncryptedBlkDwldI=' + enc(EncryptedBlkDwldI),callback, context);},
PrepareBulkDownload:function(statusC,blkDwldI,ItemRsltnI,callback,context){return new ajax_request(this.url + '?_method=PrepareBulkDownload&_session=no','statusC=' + enc(statusC)+ '\r\nblkDwldI=' + enc(blkDwldI)+ '\r\nItemRsltnI=' + enc(ItemRsltnI),callback, context);},
GetBulkDownloadLocation:function(callback,context){return new ajax_request(this.url + '?_method=GetBulkDownloadLocation&_session=no','',callback, context);},
url:gHost + '/ajax/WireImageRM.ashx'
}
//
// Menus //
var legacyMenuObj = [['1_1',' <div class="cl2OutterDev"><div class="cl2InnerDev"> <ul id="nbCL2GlobalNav"><li OnMouseOver="showSubMenu(this,0,\'\');"> <a id="nbCL2GlobalNav__ctl2_hlNavLink" href="javascript:goToNavUrl(\'/default.asp?nbc1=1\')">Recent Events</a></li><li OnMouseOver="showSubMenu(this,0,\'\');"> <a id="nbCL2GlobalNav__ctl4_hlNavLink" href="javascript:goToNavUrl(\'/FeaturedCelebrities.aspx\')">Celebrities</a></li><li OnMouseOver="showSubMenu(this,0,\'\');"> <a id="nbCL2GlobalNav__ctl6_hlNavLink" href="javascript:goToNavUrl(\'/Headlines.aspx?NavTyp=CAL&amp;nbc1=1\')">Headlines</a></li><li OnMouseOver="showSubMenu(this,0,\'\');"> <a id="nbCL2GlobalNav__ctl8_hlNavLink" href="javascript:goToNavUrl(\'/FeaturedEvents.aspx?ci=1\')">Featured Events</a></li><li><hr></li></ul> <ul id="CL2Menu"><li OnMouseOut="hideSubMenu(event);" OnMouseOver="showSubMenu(this,2, \'Entertainment\');"><a id="CL2Menu__ctl2_hlNavLink" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=2&amp;ci=2\')">Awards</a><span id="CL2Menu__ctl2_spArrow">&rsaquo;</span></li><li OnMouseOut="hideSubMenu(event);" OnMouseOver="showSubMenu(this,4, \'Entertainment\');"><a id="CL2Menu__ctl4_hlNavLink" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=2&amp;ci=4\')">Music</a><span id="CL2Menu__ctl4_spArrow">&rsaquo;</span></li><li OnMouseOut="hideSubMenu(event);" OnMouseOver="showSubMenu(this,6, \'Entertainment\');"><a id="CL2Menu__ctl6_hlNavLink" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=2&amp;ci=6\')">Film</a><span id="CL2Menu__ctl6_spArrow">&rsaquo;</span></li><li OnMouseOut="hideSubMenu(event);" OnMouseOver="showSubMenu(this,7, \'Entertainment\');"><a id="CL2Menu__ctl8_hlNavLink" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=2&amp;ci=7\')">Parties</a><span id="CL2Menu__ctl8_spArrow">&rsaquo;</span></li><li OnMouseOut="hideSubMenu(event);" OnMouseOver="showSubMenu(this,10, \'Entertainment\');"><a id="CL2Menu__ctl10_hlNavLink" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=2&amp;ci=10\')">TV</a><span id="CL2Menu__ctl10_spArrow">&rsaquo;</span></li><li OnMouseOut="hideSubMenu(event);" OnMouseOver="showSubMenu(this,13, \'Entertainment\');"><a id="CL2Menu__ctl12_hlNavLink" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=2&amp;ci=13\')">Fashion</a><span id="CL2Menu__ctl12_spArrow">&rsaquo;</span></li><li OnMouseOut="hideSubMenu(event);" OnMouseOver="showSubMenu(this,14, \'Entertainment\');"><a id="CL2Menu__ctl14_hlNavLink" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=2&amp;ci=14\')">Theater</a><span id="CL2Menu__ctl14_spArrow">&rsaquo;</span></li><li OnMouseOut="hideSubMenu(event);" OnMouseOver="showSubMenu(this,16, \'Entertainment\');"><a id="CL2Menu__ctl16_hlNavLink" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=2&amp;ci=16\')">Royalty</a><span id="CL2Menu__ctl16_spArrow">&rsaquo;</span></li><li OnMouseOut="hideSubMenu(event);" OnMouseOver="showSubMenu(this,12, \'Entertainment\');"><a id="CL2Menu__ctl18_hlNavLink" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=2&amp;ci=12\')">Portraits</a><span id="CL2Menu__ctl18_spArrow">&rsaquo;</span></li><li OnMouseOut="hideSubMenu(event);" OnMouseOver="showSubMenu(this,11, \'Entertainment\');"><a id="CL2Menu__ctl20_hlNavLink" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=2&amp;ci=11\')">Products & Gift Suites</a><span id="CL2Menu__ctl20_spArrow">&rsaquo;</span></li><li OnMouseOut="hideSubMenu(event);" OnMouseOver="showSubMenu(this,171, \'Entertainment\');"><a id="CL2Menu__ctl22_hlNavLink" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=2&amp;ci=171\')">Launches & Signings</a><span id="CL2Menu__ctl22_spArrow">&rsaquo;</span></li><li OnMouseOut="hideSubMenu(event);" OnMouseOver="showSubMenu(this,172, \'Entertainment\');"><a id="CL2Menu__ctl24_hlNavLink" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=2&amp;ci=172\')">Special Moments</a><span id="CL2Menu__ctl24_spArrow">&rsaquo;</span></li><li OnMouseOut="hideSubMenu(event);" OnMouseOver="showSubMenu(this,15, \'Entertainment\');"><a id="CL2Menu__ctl26_hlNavLink" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=2&amp;ci=15\')">More Entertainment</a><span id="CL2Menu__ctl26_spArrow">&rsaquo;</span></li></ul> &nbsp; </div></div>'],['2_2','<div id="divCL3Menu" class="cl3OutterDevWide"><div id="divCL3MenuSub" class="cl3InnerDevWide"> <ul id="CL3Menu"><li> <a id="CL3Menu__ctl2_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1\')">Academy Awards</a> </li><li> <a id="CL3Menu__ctl4_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1049\')">Academy of Country Music</a> </li><li> <a id="CL3Menu__ctl6_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=2\')">AFI Awards</a> </li><li> <a id="CL3Menu__ctl8_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=3\')">ALMA Awards</a> </li><li> <a id="CL3Menu__ctl10_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=4\')">American Cinematheque Award</a> </li><li> <a id="CL3Menu__ctl12_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=5\')">American Music Awards</a> </li><li> <a id="CL3Menu__ctl14_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1050\')">American Women in Radio & Television Awards</a> </li><li> <a id="CL3Menu__ctl16_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=7\')">ASCAP Pop Awards</a> </li><li> <a id="CL3Menu__ctl18_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=18\')">BAFTA Awards</a> </li><li> <a id="CL3Menu__ctl20_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=11\')">BET Awards</a> </li><li> <a id="CL3Menu__ctl22_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=8\')">Billboard Music Awards</a> </li><li> <a id="CL3Menu__ctl24_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1051\')">Black Movie Awards</a> </li><li> <a id="CL3Menu__ctl26_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=133\')">BMI Awards</a> </li><li> <a id="CL3Menu__ctl28_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1052\')">Brit Awards</a> </li><li> <a id="CL3Menu__ctl30_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=10\')">Broadcast Film Critics Awards</a> </li><li> <a id="CL3Menu__ctl32_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1053\')">Cesar Awards</a> </li><li> <a id="CL3Menu__ctl34_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=88\')">CFDA Awards</a> </li><li> <a id="CL3Menu__ctl36_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1054\')">CMT Music Awards</a> </li><li> <a id="CL3Menu__ctl38_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=12\')">Comedy Awards</a> </li><li> <a id="CL3Menu__ctl40_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=13\')">Country Music Awards</a> </li><li> <a id="CL3Menu__ctl42_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=14\')">Directors Guild Awards</a> </li><li> <a id="CL3Menu__ctl44_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1055\')">Diversity Awards</a> </li><li> <a id="CL3Menu__ctl46_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=15\')">Emmy Awards</a> </li><li> <a id="CL3Menu__ctl48_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=16\')">Environmental Media Awards</a> </li><li> <a id="CL3Menu__ctl50_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=67\')">ESPY Awards</a> </li><li> <a id="CL3Menu__ctl52_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1056\')">Family Television Awards</a> </li><li> <a id="CL3Menu__ctl54_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=17\')">Footprint Ceremonies</a> </li><li> <a id="CL3Menu__ctl56_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=19\')">GLAAD Media Awards</a> </li><li> <a id="CL3Menu__ctl58_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1057\')">Glamour Women of the Year</a> </li><li> <a id="CL3Menu__ctl60_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=20\')">Golden Apple Awards</a> </li><li> <a id="CL3Menu__ctl62_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=21\')">Golden Globe Awards</a> </li><li> <a id="CL3Menu__ctl64_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=131\')">GQ Awards</a> </li><li> <a id="CL3Menu__ctl66_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=22\')">GRAMMY Awards</a> </li><li> <a id="CL3Menu__ctl68_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=870\')">Hollywood Awards</a> </li><li> <a id="CL3Menu__ctl70_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1058\')">IFP Gotham Awards</a> </li><li> <a id="CL3Menu__ctl72_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=34\')">Independent Spirit Awards</a> </li><li> <a id="CL3Menu__ctl74_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1059\')">Juno Awards</a> </li><li> <a id="CL3Menu__ctl76_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=132\')">Kennedy Center</a> </li><li> <a id="CL3Menu__ctl78_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=24\')">Kids Choice Awards</a> </li><li> <a id="CL3Menu__ctl80_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=25\')">L.A. Film Critics Awards</a> </li><li> <a id="CL3Menu__ctl82_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=26\')">Lady of Soul Awards</a> </li><li> <a id="CL3Menu__ctl84_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=134\')">Laureus World Sport Awards</a> </li><li> <a id="CL3Menu__ctl86_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=129\')">Movieline Hollywood Awards</a> </li><li> <a id="CL3Menu__ctl88_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=27\')">MTV Awards</a> </li><li> <a id="CL3Menu__ctl90_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1060\')">MuchMusic Video Awards</a> </li><li> <a id="CL3Menu__ctl92_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=89\')">NAACP Image Awards</a> </li><li> <a id="CL3Menu__ctl94_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=69\')">NRJ Music Awards</a> </li><li> <a id="CL3Menu__ctl96_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=28\')">People\'s Choice Awards</a> </li><li> <a id="CL3Menu__ctl98_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=29\')">Producers Guild Awards</a> </li><li> <a id="CL3Menu__ctl100_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=30\')">Radio Music Awards</a> </li><li> <a id="CL3Menu__ctl102_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=128\')">Rock and Roll Hall of Fame</a> </li><li> <a id="CL3Menu__ctl104_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1061\')">Saturn Awards</a> </li><li> <a id="CL3Menu__ctl106_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=31\')">Screen Actors Guild Awards</a> </li><li> <a id="CL3Menu__ctl108_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=135\')">ShoWest Awards</a> </li><li> <a id="CL3Menu__ctl110_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=32\')">Soul Train Awards</a> </li><li> <a id="CL3Menu__ctl112_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=33\')">Source Hip-Hop Music Awards</a> </li><li> <a id="CL3Menu__ctl114_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=35\')">Teen Choice Awards</a> </li><li> <a id="CL3Menu__ctl116_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=90\')">Tony Awards</a> </li><li> <a id="CL3Menu__ctl118_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1062\')">TV Land Awards</a> </li><li> <a id="CL3Menu__ctl120_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=87\')">VH1 Awards</a> </li><li> <a id="CL3Menu__ctl122_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=37\')">Walk of Fame Stars</a> </li><li> <a id="CL3Menu__ctl124_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=38\')">WGA Awards</a> </li><li> <a id="CL3Menu__ctl126_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=39\')">Women in Film Awards</a> </li><li> <a id="CL3Menu__ctl128_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=40\')">Women in Hollywood Awards</a> </li><li> <a id="CL3Menu__ctl130_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=130\')">World Music Awards</a> </li><li> <a id="CL3Menu__ctl132_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=42\')">Other Award Ceremonies</a> </li></ul>&nbsp; </div></div> '],['2_4','<div id="divCL3Menu" class="cl3OutterDev"><div id="divCL3MenuSub" class="cl3InnerDev"> <ul id="CL3Menu"><li> <a id="CL3Menu__ctl2_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=48\')">Concerts</a> </li><li> <a id="CL3Menu__ctl4_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1019\')">Festivals</a> </li><li> <a id="CL3Menu__ctl6_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=75\')">File Photos</a> </li><li> <a id="CL3Menu__ctl8_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=68\')">Industry Events</a> </li><li> <a id="CL3Menu__ctl10_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=49\')">Music Parties</a> </li><li> <a id="CL3Menu__ctl12_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=50\')">Music Press Conferences</a> </li><li> <a id="CL3Menu__ctl14_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=74\')">Music Video Shoots</a> </li><li> <a id="CL3Menu__ctl16_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=51\')">Musicians in Store</a> </li><li> <a id="CL3Menu__ctl18_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=52\')">Other Music Events</a> </li></ul>&nbsp; </div></div> '],['2_6','<div id="divCL3Menu" class="cl3OutterDevWide"><div id="divCL3MenuSub" class="cl3InnerDevWide"> <ul id="CL3Menu"><li> <a id="CL3Menu__ctl2_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1003\')">Berlin Film Festival</a> </li><li> <a id="CL3Menu__ctl4_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=44\')">Cannes Film Festival</a> </li><li> <a id="CL3Menu__ctl6_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1004\')">Deauville Film Festival</a> </li><li> <a id="CL3Menu__ctl8_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=76\')">File Photos</a> </li><li> <a id="CL3Menu__ctl10_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1005\')">Film Parties</a> </li><li> <a id="CL3Menu__ctl12_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=43\')">Film Premieres</a> </li><li> <a id="CL3Menu__ctl14_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=77\')">Film Press Conferences</a> </li><li> <a id="CL3Menu__ctl16_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1006\')">Filming on Location</a> </li><li> <a id="CL3Menu__ctl18_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1007\')">Hamptons Film Festival</a> </li><li> <a id="CL3Menu__ctl20_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=66\')">Industry Events</a> </li><li> <a id="CL3Menu__ctl22_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1008\')">London Film Festival</a> </li><li> <a id="CL3Menu__ctl24_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1009\')">Los Angeles Film Festival</a> </li><li> <a id="CL3Menu__ctl26_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=916\')">Movie Stills</a> </li><li> <a id="CL3Menu__ctl28_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1010\')">New York Film Festival</a> </li><li> <a id="CL3Menu__ctl30_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1012\')">Photo Calls</a> </li><li> <a id="CL3Menu__ctl32_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1013\')">Pusan Film Festival</a> </li><li> <a id="CL3Menu__ctl34_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1014\')">Rome Film Festival</a> </li><li> <a id="CL3Menu__ctl36_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1015\')">Santa Barbara Film Festival</a> </li><li> <a id="CL3Menu__ctl38_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=65\')">Sundance Film Festival</a> </li><li> <a id="CL3Menu__ctl40_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=45\')">Telluride Film Festival</a> </li><li> <a id="CL3Menu__ctl42_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1016\')">Tokyo Film Festival</a> </li><li> <a id="CL3Menu__ctl44_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=46\')">Toronto Film Festival</a> </li><li> <a id="CL3Menu__ctl46_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1017\')">Tribeca Film Festival</a> </li><li> <a id="CL3Menu__ctl48_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1018\')">Venice Film Festival</a> </li><li> <a id="CL3Menu__ctl50_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=47\')">Other Film Events</a> </li><li> <a id="CL3Menu__ctl52_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1011\')">Other Film Festivals</a> </li></ul>&nbsp; </div></div> '],['2_7','<div id="divCL3Menu" class="cl3OutterDev"><div id="divCL3MenuSub" class="cl3InnerDev"> <ul id="CL3Menu"><li> <a id="CL3Menu__ctl2_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1020\')">Birthday Parties</a> </li><li> <a id="CL3Menu__ctl4_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=54\')">Charity Events</a> </li><li> <a id="CL3Menu__ctl6_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1021\')">Christmas</a> </li><li> <a id="CL3Menu__ctl8_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=55\')">Launch Parties</a> </li><li> <a id="CL3Menu__ctl10_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1022\')">New Year</a> </li><li> <a id="CL3Menu__ctl12_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1023\')">Nightclubs</a> </li><li> <a id="CL3Menu__ctl14_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1024\')">Valentine\'s Day</a> </li><li> <a id="CL3Menu__ctl16_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1025\')">Other Holidays</a> </li><li> <a id="CL3Menu__ctl18_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=56\')">Other Parties</a> </li></ul>&nbsp; </div></div> '],['2_10','<div id="divCL3Menu" class="cl3OutterDevWide"><div id="divCL3MenuSub" class="cl3InnerDevWide"> <ul id="CL3Menu"><li> <a id="CL3Menu__ctl2_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=683\')">106 & Park</a> </li><li> <a id="CL3Menu__ctl4_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1037\')">ABC Press Events</a> </li><li> <a id="CL3Menu__ctl6_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=684\')">American Idol</a> </li><li> <a id="CL3Menu__ctl8_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1038\')">CBS Press Events</a> </li><li> <a id="CL3Menu__ctl10_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1039\')">CW Press Events</a> </li><li> <a id="CL3Menu__ctl12_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1040\')">FOX Press Events</a> </li><li> <a id="CL3Menu__ctl14_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1035\')">Good Morning America</a> </li><li> <a id="CL3Menu__ctl16_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=85\')">Industry Events</a> </li><li> <a id="CL3Menu__ctl18_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=685\')">Jimmy Kimmel Live</a> </li><li> <a id="CL3Menu__ctl20_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=692\')">Late Show with David Letterman</a> </li><li> <a id="CL3Menu__ctl22_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=686\')">Live with Regis and Kelly</a> </li><li> <a id="CL3Menu__ctl24_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=687\')">Miss Universe</a> </li><li> <a id="CL3Menu__ctl26_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1041\')">MTV Press Events</a> </li><li> <a id="CL3Menu__ctl28_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=688\')">MTV Total Request Live</a> </li><li> <a id="CL3Menu__ctl30_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1042\')">NBC Press Events</a> </li><li> <a id="CL3Menu__ctl32_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1036\')">Photo Calls</a> </li><li> <a id="CL3Menu__ctl34_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1044\')">Press Conferences</a> </li><li> <a id="CL3Menu__ctl36_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=689\')">The Early Show</a> </li><li> <a id="CL3Menu__ctl38_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=691\')">The Today Show</a> </li><li> <a id="CL3Menu__ctl40_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=690\')">The Tonight Show with Jay Leno</a> </li><li> <a id="CL3Menu__ctl42_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1043\')">Turner Press Events</a> </li><li> <a id="CL3Menu__ctl44_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=84\')">Other</a> </li></ul>&nbsp; </div></div> '],['2_13','<div id="divCL3Menu" class="cl3OutterDevWide"><div id="divCL3MenuSub" class="cl3InnerDevWide"> <ul id="CL3Menu"><li> <a id="CL3Menu__ctl2_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=989\')">Australia Fashion Shows</a> </li><li> <a id="CL3Menu__ctl4_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=71\')">Fashion Parties</a> </li><li> <a id="CL3Menu__ctl6_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=990\')">Iceland Fashion Shows</a> </li><li> <a id="CL3Menu__ctl8_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=991\')">Lisbon Fashion Shows</a> </li><li> <a id="CL3Menu__ctl10_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=992\')">London Fashion Shows</a> </li><li> <a id="CL3Menu__ctl12_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=993\')">Los Angeles Fashion Shows</a> </li><li> <a id="CL3Menu__ctl14_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=994\')">Madrid Fashion Shows</a> </li><li> <a id="CL3Menu__ctl16_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=995\')">Miami Fashion Shows</a> </li><li> <a id="CL3Menu__ctl18_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=92\')">Milan Fashion Shows</a> </li><li> <a id="CL3Menu__ctl20_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=72\')">New York Fashion Shows</a> </li><li> <a id="CL3Menu__ctl22_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=996\')">New Zealand Fashion Shows</a> </li><li> <a id="CL3Menu__ctl24_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=91\')">Paris Fashion Shows</a> </li><li> <a id="CL3Menu__ctl26_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=997\')">Rio Fashion Shows</a> </li><li> <a id="CL3Menu__ctl28_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=998\')">San Francisco Fashion Shows</a> </li><li> <a id="CL3Menu__ctl30_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=999\')">Sao Paulo Fashion Shows</a> </li><li> <a id="CL3Menu__ctl32_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1000\')">Tokyo Fashion Shows</a> </li><li> <a id="CL3Menu__ctl34_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1001\')">Toronto Fashion Shows</a> </li><li> <a id="CL3Menu__ctl36_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1002\')">Victoria\'s Secret</a> </li><li> <a id="CL3Menu__ctl38_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=70\')">Other Fashion Shows</a> </li><li> <a id="CL3Menu__ctl40_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=73\')">Other Fashion Events</a> </li></ul>&nbsp; </div></div> '],['2_14','<div id="divCL3Menu" class="cl3OutterDev"><div id="divCL3MenuSub" class="cl3InnerDev"> <ul id="CL3Menu"><li> <a id="CL3Menu__ctl2_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1032\')">Broadway</a> </li><li> <a id="CL3Menu__ctl4_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1033\')">Performance Art</a> </li><li> <a id="CL3Menu__ctl6_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1034\')">West End</a> </li><li> <a id="CL3Menu__ctl8_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=78\')">Other</a> </li></ul>&nbsp; </div></div> '],['2_16','<div id="divCL3Menu" class="cl3OutterDev"><div id="divCL3MenuSub" class="cl3InnerDev"> <ul id="CL3Menu"><li> <a id="CL3Menu__ctl2_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=987\')">British Royalty</a> </li><li> <a id="CL3Menu__ctl4_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=988\')">Spanish Royalty</a> </li><li> <a id="CL3Menu__ctl6_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=86\')">Other Royalty</a> </li></ul>&nbsp; </div></div> '],['2_12','<div id="divCL3Menu" class="cl3OutterDev"><div id="divCL3MenuSub" class="cl3InnerDev"> <ul id="CL3Menu"><li> <a id="CL3Menu__ctl2_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=355\')">Fashion</a> </li><li> <a id="CL3Menu__ctl4_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=352\')">Film & TV</a> </li><li> <a id="CL3Menu__ctl6_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=354\')">Music</a> </li><li> <a id="CL3Menu__ctl8_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=356\')">Other</a> </li></ul>&nbsp; </div></div> '],['2_11','<div id="divCL3Menu" class="cl3OutterDevWide"><div id="divCL3MenuSub" class="cl3InnerDevWide"> <ul id="CL3Menu"><li> <a id="CL3Menu__ctl2_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1048\')">American Eagle</a> </li><li> <a id="CL3Menu__ctl4_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1026\')">Backstage Creation</a> </li><li> <a id="CL3Menu__ctl6_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=700\')">Blackberry</a> </li><li> <a id="CL3Menu__ctl8_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1045\')">Bon Appetit</a> </li><li> <a id="CL3Menu__ctl10_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=701\')">Casio</a> </li><li> <a id="CL3Menu__ctl12_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=112\')">Chrysler</a> </li><li> <a id="CL3Menu__ctl14_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=697\')">Frigidaire</a> </li><li> <a id="CL3Menu__ctl16_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=634\')">General Motors</a> </li><li> <a id="CL3Menu__ctl18_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=698\')">Heineken</a> </li><li> <a id="CL3Menu__ctl20_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=121\')">Hogan</a> </li><li> <a id="CL3Menu__ctl22_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1047\')">Jane</a> </li><li> <a id="CL3Menu__ctl24_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1027\')">Kari Feinstein Style Lounge</a> </li><li> <a id="CL3Menu__ctl26_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=637\')">Levi\'s</a> </li><li> <a id="CL3Menu__ctl28_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=120\')">M.A.C</a> </li><li> <a id="CL3Menu__ctl30_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=639\')">Media Placement</a> </li><li> <a id="CL3Menu__ctl32_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=640\')">Mercedes</a> </li><li> <a id="CL3Menu__ctl34_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=636\')">Motorola</a> </li><li> <a id="CL3Menu__ctl36_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=116\')">Nintendo</a> </li><li> <a id="CL3Menu__ctl38_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1028\')">On 3</a> </li><li> <a id="CL3Menu__ctl40_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=118\')">Perrier</a> </li><li> <a id="CL3Menu__ctl42_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=635\')">Philips</a> </li><li> <a id="CL3Menu__ctl44_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=117\')">PlayStation</a> </li><li> <a id="CL3Menu__ctl46_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1046\')">Premiere</a> </li><li> <a id="CL3Menu__ctl48_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=119\')">Reebok</a> </li><li> <a id="CL3Menu__ctl50_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=114\')">Safilo</a> </li><li> <a id="CL3Menu__ctl52_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1029\')">Silver Spoon</a> </li><li> <a id="CL3Menu__ctl54_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=127\')">Solstice</a> </li><li> <a id="CL3Menu__ctl56_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=699\')">Tao</a> </li><li> <a id="CL3Menu__ctl58_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1030\')">The Luxury Lounge</a> </li><li> <a id="CL3Menu__ctl60_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=633\')">Village At The Lift</a> </li><li> <a id="CL3Menu__ctl62_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=638\')">Volkswagen</a> </li><li> <a id="CL3Menu__ctl64_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=1031\')">Other</a> </li></ul>&nbsp; </div></div> '],['2_171','<div id="divCL3Menu" class="cl3OutterDev"><div id="divCL3MenuSub" class="cl3InnerDev"> <ul id="CL3Menu"><li> <a id="CL3Menu__ctl2_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=950\')">Books</a> </li><li> <a id="CL3Menu__ctl4_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=951\')">Calendars</a> </li><li> <a id="CL3Menu__ctl6_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=952\')">Clothing</a> </li><li> <a id="CL3Menu__ctl8_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=954\')">Cosmetics</a> </li><li> <a id="CL3Menu__ctl10_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=953\')">Electronics</a> </li><li> <a id="CL3Menu__ctl12_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=955\')">Fragrances</a> </li><li> <a id="CL3Menu__ctl14_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=956\')">Handbags</a> </li><li> <a id="CL3Menu__ctl16_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=957\')">Jewelry</a> </li><li> <a id="CL3Menu__ctl18_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=958\')">Magazines</a> </li><li> <a id="CL3Menu__ctl20_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=959\')">Movies/DVDs</a> </li><li> <a id="CL3Menu__ctl22_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=960\')">Music/CDs</a> </li><li> <a id="CL3Menu__ctl24_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=961\')">Shoes</a> </li><li> <a id="CL3Menu__ctl26_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=962\')">Video Games</a> </li><li> <a id="CL3Menu__ctl28_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=963\')">Watches</a> </li><li> <a id="CL3Menu__ctl30_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=964\')">Websites</a> </li><li> <a id="CL3Menu__ctl32_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=965\')">Other</a> </li></ul>&nbsp; </div></div> '],['2_172','<div id="divCL3Menu" class="cl3OutterDev"><div id="divCL3MenuSub" class="cl3InnerDev"> <ul id="CL3Menu"><li> <a id="CL3Menu__ctl2_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=966\')">Celebrity Babies</a> </li><li> <a id="CL3Menu__ctl4_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=967\')">Celebrity Birthday Parties</a> </li><li> <a id="CL3Menu__ctl6_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=968\')">Celebrity Weddings</a> </li></ul>&nbsp; </div></div> '],['2_15','<div id="divCL3Menu" class="cl3OutterDev"><div id="divCL3MenuSub" class="cl3InnerDev"> <ul id="CL3Menu"><li> <a id="CL3Menu__ctl2_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=62\')">Celebrity Golf</a> </li><li> <a id="CL3Menu__ctl4_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=63\')">Celebrity Racing</a> </li><li> <a id="CL3Menu__ctl6_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=59\')">Celebrity Sports</a> </li><li> <a id="CL3Menu__ctl8_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=980\')">Comedy Events</a> </li><li> <a id="CL3Menu__ctl10_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=981\')">Conventions</a> </li><li> <a id="CL3Menu__ctl12_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=360\')">Corporate</a> </li><li> <a id="CL3Menu__ctl14_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=982\')">Fine Arts & Gallery Openings</a> </li><li> <a id="CL3Menu__ctl16_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=983\')">In Memoriam</a> </li><li> <a id="CL3Menu__ctl18_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=984\')">Parades & Celebrations</a> </li><li> <a id="CL3Menu__ctl20_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=79\')">Politics</a> </li><li> <a id="CL3Menu__ctl22_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=615\')">Press Conferences</a> </li><li> <a id="CL3Menu__ctl24_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=58\')">Pro Athletes</a> </li><li> <a id="CL3Menu__ctl26_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=985\')">Radio</a> </li><li> <a id="CL3Menu__ctl28_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=57\')">Sightings</a> </li><li> <a id="CL3Menu__ctl30_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=53\')">Store Appearances</a> </li><li> <a id="CL3Menu__ctl32_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=986\')">Stunts/Magic</a> </li><li> <a id="CL3Menu__ctl34_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=362\')">Other</a> </li></ul>&nbsp; </div></div> '],['1_2',' <div class="cl2OutterDev"><div class="cl2InnerDev"> <ul id="nbCL2GlobalNav"><li OnMouseOver="showSubMenu(this,0,\'\');"> <a id="nbCL2GlobalNav__ctl2_hlNavLink" href="javascript:goToNavUrl(\'/default.asp?nbc1=2\')">Recent Events</a></li><li OnMouseOver="showSubMenu(this,0,\'\');"> <a id="nbCL2GlobalNav__ctl4_hlNavLink" href="javascript:goToNavUrl(\'/FeaturedCelebrities.aspx\')">Celebrities</a></li><li OnMouseOver="showSubMenu(this,0,\'\');"> <a id="nbCL2GlobalNav__ctl6_hlNavLink" href="javascript:goToNavUrl(\'/Headlines.aspx?NavTyp=CAL&amp;nbc1=2\')">Headlines</a></li><li OnMouseOver="showSubMenu(this,0,\'\');"> <a id="nbCL2GlobalNav__ctl8_hlNavLink" href="javascript:goToNavUrl(\'/FeaturedEvents.aspx?ci=2\')">Featured Events</a></li><li><hr></li></ul> <ul id="CL2Menu"><li OnMouseOut="hideSubMenu(event);" OnMouseOver="showSubMenu(this,17, \'Sports\');"><a id="CL2Menu__ctl2_hlNavLink" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=2&amp;ci=17\')">Baseball</a><span id="CL2Menu__ctl2_spArrow">&rsaquo;</span></li><li OnMouseOut="hideSubMenu(event);" OnMouseOver="showSubMenu(this,34, \'Sports\');"><a id="CL2Menu__ctl4_hlNavLink" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=2&amp;ci=34\')">Basketball</a><span id="CL2Menu__ctl4_spArrow">&rsaquo;</span></li><li OnMouseOut="hideSubMenu(event);" OnMouseOver="showSubMenu(this,18, \'Sports\');"><a id="CL2Menu__ctl6_hlNavLink" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=2&amp;ci=18\')">Football</a><span id="CL2Menu__ctl6_spArrow">&rsaquo;</span></li><li OnMouseOut="hideSubMenu(event);" OnMouseOver="showSubMenu(this,19, \'Sports\');"><a id="CL2Menu__ctl8_hlNavLink" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=2&amp;ci=19\')">Golf</a><span id="CL2Menu__ctl8_spArrow">&rsaquo;</span></li><li OnMouseOut="hideSubMenu(event);" OnMouseOver="showSubMenu(this,20, \'Sports\');"><a id="CL2Menu__ctl10_hlNavLink" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=2&amp;ci=20\')">Hockey</a><span id="CL2Menu__ctl10_spArrow">&rsaquo;</span></li><li OnMouseOut="hideSubMenu(event);" OnMouseOver="showSubMenu(this,21, \'Sports\');"><a id="CL2Menu__ctl12_hlNavLink" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=2&amp;ci=21\')">Motorsports</a><span id="CL2Menu__ctl12_spArrow">&rsaquo;</span></li><li OnMouseOut="hideSubMenu(event);" OnMouseOver="showSubMenu(this,173, \'Sports\');"><a id="CL2Menu__ctl14_hlNavLink" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=2&amp;ci=173\')">Olympics</a><span id="CL2Menu__ctl14_spArrow">&rsaquo;</span></li><li OnMouseOut="hideSubMenu(event);" OnMouseOver="showSubMenu(this,117, \'Sports\');"><a id="CL2Menu__ctl16_hlNavLink" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=2&amp;ci=117\')">Soccer</a><span id="CL2Menu__ctl16_spArrow">&rsaquo;</span></li><li OnMouseOut="hideSubMenu(event);" OnMouseOver="showSubMenu(this,22, \'Sports\');"><a id="CL2Menu__ctl18_hlNavLink" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=2&amp;ci=22\')">Tennis</a><span id="CL2Menu__ctl18_spArrow">&rsaquo;</span></li><li OnMouseOut="hideSubMenu(event);" OnMouseOver="showSubMenu(this,23, \'Sports\');"><a id="CL2Menu__ctl20_hlNavLink" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=2&amp;ci=23\')">More Sports</a><span id="CL2Menu__ctl20_spArrow">&rsaquo;</span></li></ul> &nbsp; </div></div>'],['2_17','<div id="divCL3Menu" class="cl3OutterDev"><div id="divCL3MenuSub" class="cl3InnerDev"> <ul id="CL3Menu"><li> <a id="CL3Menu__ctl2_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=368\')">Celebrity</a> </li><li> <a id="CL3Menu__ctl4_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=366\')">MLB</a> </li><li> <a id="CL3Menu__ctl6_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=367\')">NCAA</a> </li><li> <a id="CL3Menu__ctl8_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=369\')">Other</a> </li></ul>&nbsp; </div></div> '],['2_34','<div id="divCL3Menu" class="cl3OutterDev"><div id="divCL3MenuSub" class="cl3InnerDev"> <ul id="CL3Menu"><li> <a id="CL3Menu__ctl2_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=374\')">Celebrity</a> </li><li> <a id="CL3Menu__ctl4_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=370\')">NBA</a> </li><li> <a id="CL3Menu__ctl6_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=372\')">NCAA - Men</a> </li><li> <a id="CL3Menu__ctl8_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=373\')">NCAA - Women</a> </li><li> <a id="CL3Menu__ctl10_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=371\')">WNBA</a> </li><li> <a id="CL3Menu__ctl12_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=375\')">Other</a> </li></ul>&nbsp; </div></div> '],['2_18','<div id="divCL3Menu" class="cl3OutterDevWide"><div id="divCL3MenuSub" class="cl3InnerDevWide"> <ul id="CL3Menu"><li> <a id="CL3Menu__ctl2_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=378\')">Arena</a> </li><li> <a id="CL3Menu__ctl4_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=481\')">Arizona Cardinals</a> </li><li> <a id="CL3Menu__ctl6_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=488\')">Atlanta Falcons</a> </li><li> <a id="CL3Menu__ctl8_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=641\')">Baltimore Colts</a> </li><li> <a id="CL3Menu__ctl10_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=499\')">Baltimore Ravens</a> </li><li> <a id="CL3Menu__ctl12_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=642\')">Boston Patriots</a> </li><li> <a id="CL3Menu__ctl14_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=477\')">Buffalo Bills</a> </li><li> <a id="CL3Menu__ctl16_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=495\')">Carolina Panthers</a> </li><li> <a id="CL3Menu__ctl18_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=379\')">Celebrity</a> </li><li> <a id="CL3Menu__ctl20_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=94\')">CFL</a> </li><li> <a id="CL3Menu__ctl22_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=475\')">Chicago Bears</a> </li><li> <a id="CL3Menu__ctl24_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=476\')">Cincinnati Bengals</a> </li><li> <a id="CL3Menu__ctl26_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=479\')">Cleveland Browns</a> </li><li> <a id="CL3Menu__ctl28_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=485\')">Dallas Cowboys</a> </li><li> <a id="CL3Menu__ctl30_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=648\')">Dallas Texans</a> </li><li> <a id="CL3Menu__ctl32_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=478\')">Denver Broncos</a> </li><li> <a id="CL3Menu__ctl34_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=492\')">Detroit Lions</a> </li><li> <a id="CL3Menu__ctl36_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=494\')">Green Bay Packers</a> </li><li> <a id="CL3Menu__ctl38_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=493\')">Houston Oilers</a> </li><li> <a id="CL3Menu__ctl40_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=504\')">Houston Texans</a> </li><li> <a id="CL3Menu__ctl42_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=484\')">Indianapolis Colts</a> </li><li> <a id="CL3Menu__ctl44_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=490\')">Jacksonville Jaguars</a> </li><li> <a id="CL3Menu__ctl46_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=483\')">Kansas City Chiefs</a> </li><li> <a id="CL3Menu__ctl48_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=647\')">Los Angeles Chargers</a> </li><li> <a id="CL3Menu__ctl50_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=644\')">Los Angeles Raiders</a> </li><li> <a id="CL3Menu__ctl52_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=643\')">Los Angeles Rams</a> </li><li> <a id="CL3Menu__ctl54_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=486\')">Miami Dolphins</a> </li><li> <a id="CL3Menu__ctl56_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=506\')">Minnesota Vikings</a> </li><li> <a id="CL3Menu__ctl58_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=377\')">NCAA</a> </li><li> <a id="CL3Menu__ctl60_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=496\')">New England Patriots</a> </li><li> <a id="CL3Menu__ctl62_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=501\')">New Orleans Saints</a> </li><li> <a id="CL3Menu__ctl64_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=489\')">New York Giants</a> </li><li> <a id="CL3Menu__ctl66_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=491\')">New York Jets</a> </li><li> <a id="CL3Menu__ctl68_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=646\')">New York Titans</a> </li><li> <a id="CL3Menu__ctl70_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=376\')">NFL</a> </li><li> <a id="CL3Menu__ctl72_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=612\')">NFL - AFC Playoffs</a> </li><li> <a id="CL3Menu__ctl74_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=614\')">NFL - Draft</a> </li><li> <a id="CL3Menu__ctl76_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=921\')">NFL - Hall of Fame</a> </li><li> <a id="CL3Menu__ctl78_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=613\')">NFL - NFC Playoffs</a> </li><li> <a id="CL3Menu__ctl80_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=629\')">NFL - Preseason & Camps</a> </li><li> <a id="CL3Menu__ctl82_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=628\')">NFL - Press Conferences</a> </li><li> <a id="CL3Menu__ctl84_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=611\')">NFL - Pro Bowl</a> </li><li> <a id="CL3Menu__ctl86_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=920\')">NFL - SB Pre-Game & Half Time Entertainment</a> </li><li> <a id="CL3Menu__ctl88_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=919\')">NFL - SB Press Conf.</a> </li><li> <a id="CL3Menu__ctl90_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=610\')">NFL - Super Bowl</a> </li><li> <a id="CL3Menu__ctl92_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=917\')">NFL - Super Bowl Games</a> </li><li> <a id="CL3Menu__ctl94_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=918\')">NFL - Super Bowl Parties</a> </li><li> <a id="CL3Menu__ctl96_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=497\')">Oakland Raiders</a> </li><li> <a id="CL3Menu__ctl98_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=487\')">Philadelphia Eagles</a> </li><li> <a id="CL3Menu__ctl100_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=645\')">Phoenix Cardinals</a> </li><li> <a id="CL3Menu__ctl102_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=503\')">Pittsburgh Steelers</a> </li><li> <a id="CL3Menu__ctl104_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=482\')">San Diego Chargers</a> </li><li> <a id="CL3Menu__ctl106_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=474\')">San Francisco 49ers</a> </li><li> <a id="CL3Menu__ctl108_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=502\')">Seattle Seahawks</a> </li><li> <a id="CL3Menu__ctl110_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=649\')">St. Louis Cardinals</a> </li><li> <a id="CL3Menu__ctl112_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=498\')">St. Louis Rams</a> </li><li> <a id="CL3Menu__ctl114_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=480\')">Tampa Bay Buccaneers</a> </li><li> <a id="CL3Menu__ctl116_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=505\')">Tennessee Titans</a> </li><li> <a id="CL3Menu__ctl118_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=500\')">Washington Redskins</a> </li><li> <a id="CL3Menu__ctl120_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=380\')">Other</a> </li></ul>&nbsp; </div></div> '],['2_19','<div id="divCL3Menu" class="cl3OutterDev"><div id="divCL3MenuSub" class="cl3InnerDev"> <ul id="CL3Menu"><li> <a id="CL3Menu__ctl2_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=387\')">British Open</a> </li><li> <a id="CL3Menu__ctl4_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=389\')">Celebrity</a> </li><li> <a id="CL3Menu__ctl6_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=382\')">Champions Tour</a> </li><li> <a id="CL3Menu__ctl8_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=384\')">European Tour</a> </li><li> <a id="CL3Menu__ctl10_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=383\')">LPGA</a> </li><li> <a id="CL3Menu__ctl12_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=630\')">Nationwide Tour</a> </li><li> <a id="CL3Menu__ctl14_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=95\')">NCAA</a> </li><li> <a id="CL3Menu__ctl16_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=388\')">PGA Championship</a> </li><li> <a id="CL3Menu__ctl18_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=381\')">PGA TOUR</a> </li><li> <a id="CL3Menu__ctl20_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=651\')">PGA TOUR Headshots</a> </li><li> <a id="CL3Menu__ctl22_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=385\')">The Masters</a> </li><li> <a id="CL3Menu__ctl24_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=632\')">TPC</a> </li><li> <a id="CL3Menu__ctl26_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=386\')">U.S. Open</a> </li><li> <a id="CL3Menu__ctl28_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=608\')">U.S. Senior Open</a> </li><li> <a id="CL3Menu__ctl30_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=460\')">Youth Clinics</a> </li><li> <a id="CL3Menu__ctl32_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=390\')">Other</a> </li></ul>&nbsp; </div></div> '],['2_20','<div id="divCL3Menu" class="cl3OutterDevWide"><div id="divCL3MenuSub" class="cl3InnerDevWide"> <ul id="CL3Menu"><li> <a id="CL3Menu__ctl2_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=393\')">AHL</a> </li><li> <a id="CL3Menu__ctl4_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=880\')">Anaheim Mighty Ducks</a> </li><li> <a id="CL3Menu__ctl6_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=881\')">Atlanta Thrashers</a> </li><li> <a id="CL3Menu__ctl8_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=882\')">Boston Bruins</a> </li><li> <a id="CL3Menu__ctl10_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=883\')">Buffalo Sabres</a> </li><li> <a id="CL3Menu__ctl12_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=884\')">Calgary Flames</a> </li><li> <a id="CL3Menu__ctl14_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=885\')">Carolina Hurricanes</a> </li><li> <a id="CL3Menu__ctl16_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=394\')">Celebrity</a> </li><li> <a id="CL3Menu__ctl18_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=886\')">Chicago Blackhawks</a> </li><li> <a id="CL3Menu__ctl20_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=887\')">Colorado Avalanche</a> </li><li> <a id="CL3Menu__ctl22_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=888\')">Columbus Blue Jackets</a> </li><li> <a id="CL3Menu__ctl24_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=889\')">Dallas Stars</a> </li><li> <a id="CL3Menu__ctl26_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=890\')">Detroit Red Wings</a> </li><li> <a id="CL3Menu__ctl28_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=891\')">Edmonton Oilers</a> </li><li> <a id="CL3Menu__ctl30_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=892\')">Florida Panthers</a> </li><li> <a id="CL3Menu__ctl32_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=893\')">Los Angeles Kings</a> </li><li> <a id="CL3Menu__ctl34_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=894\')">Minnesota Wild</a> </li><li> <a id="CL3Menu__ctl36_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=895\')">Montreal Canadiens</a> </li><li> <a id="CL3Menu__ctl38_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=896\')">Nashville Predators</a> </li><li> <a id="CL3Menu__ctl40_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=392\')">NCAA</a> </li><li> <a id="CL3Menu__ctl42_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=897\')">New Jersey Devils</a> </li><li> <a id="CL3Menu__ctl44_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=898\')">New York Islanders</a> </li><li> <a id="CL3Menu__ctl46_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=899\')">New York Rangers</a> </li><li> <a id="CL3Menu__ctl48_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=391\')">NHL</a> </li><li> <a id="CL3Menu__ctl50_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=912\')">NHL All Stars</a> </li><li> <a id="CL3Menu__ctl52_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=910\')">NHL Draft</a> </li><li> <a id="CL3Menu__ctl54_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=915\')">NHL Playoffs</a> </li><li> <a id="CL3Menu__ctl56_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=914\')">NHL Preseason</a> </li><li> <a id="CL3Menu__ctl58_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=911\')">NHL Press Conferences</a> </li><li> <a id="CL3Menu__ctl60_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=900\')">Ottawa Senators</a> </li><li> <a id="CL3Menu__ctl62_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=901\')">Philadelphia Flyers</a> </li><li> <a id="CL3Menu__ctl64_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=902\')">Phoenix Coyotes</a> </li><li> <a id="CL3Menu__ctl66_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=903\')">Pittsburgh Penguins</a> </li><li> <a id="CL3Menu__ctl68_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=904\')">San Jose Sharks</a> </li><li> <a id="CL3Menu__ctl70_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=905\')">St. Louis Blues</a> </li><li> <a id="CL3Menu__ctl72_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=913\')">Stanley Cup</a> </li><li> <a id="CL3Menu__ctl74_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=906\')">Tampa Bay Lightning</a> </li><li> <a id="CL3Menu__ctl76_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=907\')">Toronto Maple Leafs</a> </li><li> <a id="CL3Menu__ctl78_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=908\')">Vancouver Canucks</a> </li><li> <a id="CL3Menu__ctl80_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=909\')">Washington Capitals</a> </li><li> <a id="CL3Menu__ctl82_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=395\')">Other</a> </li></ul>&nbsp; </div></div> '],['2_21','<div id="divCL3Menu" class="cl3OutterDev"><div id="divCL3MenuSub" class="cl3InnerDev"> <ul id="CL3Menu"><li> <a id="CL3Menu__ctl2_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=399\')">Celebrity</a> </li><li> <a id="CL3Menu__ctl4_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=461\')">Champ Car/CART</a> </li><li> <a id="CL3Menu__ctl6_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=463\')">Drag Racing/NHRA</a> </li><li> <a id="CL3Menu__ctl8_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=397\')">Formula 1</a> </li><li> <a id="CL3Menu__ctl10_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=398\')">Indy Car/IRL</a> </li><li> <a id="CL3Menu__ctl12_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=462\')">IROC</a> </li><li> <a id="CL3Menu__ctl14_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=396\')">Motorcycle</a> </li><li> <a id="CL3Menu__ctl16_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=365\')">NASCAR</a> </li><li> <a id="CL3Menu__ctl18_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=97\')">Rally/WRC</a> </li><li> <a id="CL3Menu__ctl20_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=400\')">Other</a> </li></ul>&nbsp; </div></div> '],['2_173','<div id="divCL3Menu" class="cl3OutterDev"><div id="divCL3MenuSub" class="cl3InnerDev"> <ul id="CL3Menu"><li> <a id="CL3Menu__ctl2_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=969\')">Summer Olympics</a> </li><li> <a id="CL3Menu__ctl4_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=970\')">Winter Olympics</a> </li></ul>&nbsp; </div></div> '],['2_117','<div id="divCL3Menu" class="cl3OutterDevWide"><div id="divCL3MenuSub" class="cl3InnerDevWide"> <ul id="CL3Menu"><li> <a id="CL3Menu__ctl2_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=414\')">Bank of Scotland Scottish Premier League</a> </li><li> <a id="CL3Menu__ctl4_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=403\')">Barclays Premiership</a> </li><li> <a id="CL3Menu__ctl6_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=409\')">Carling Cup</a> </li><li> <a id="CL3Menu__ctl8_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=419\')">Celebrity</a> </li><li> <a id="CL3Menu__ctl10_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=652\')">Chicago Fire</a> </li><li> <a id="CL3Menu__ctl12_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=416\')">CIS Insurance Scottish League Cup</a> </li><li> <a id="CL3Menu__ctl14_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=655\')">Club Deportivo Chivas USA</a> </li><li> <a id="CL3Menu__ctl16_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=404\')">Coca-Cola Football League Championship</a> </li><li> <a id="CL3Menu__ctl18_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=654\')">Colorado Rapids</a> </li><li> <a id="CL3Menu__ctl20_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=653\')">Columbus Crew</a> </li><li> <a id="CL3Menu__ctl22_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=656\')">D.C. United</a> </li><li> <a id="CL3Menu__ctl24_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=408\')">FA Cup</a> </li><li> <a id="CL3Menu__ctl26_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=657\')">FC Dallas</a> </li><li> <a id="CL3Menu__ctl28_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=402\')">Global/World Cup</a> </li><li> <a id="CL3Menu__ctl30_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=702\')">Houston Dynamo</a> </li><li> <a id="CL3Menu__ctl32_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=413\')">Italian Serie A</a> </li><li> <a id="CL3Menu__ctl34_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=658\')">Kansas City Wizards</a> </li><li> <a id="CL3Menu__ctl36_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=659\')">Los Angeles Galaxy</a> </li><li> <a id="CL3Menu__ctl38_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=364\')">MLS</a> </li><li> <a id="CL3Menu__ctl40_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=666\')">MLS - All-Star Games</a> </li><li> <a id="CL3Menu__ctl42_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=668\')">MLS - Draft</a> </li><li> <a id="CL3Menu__ctl44_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=669\')">MLS - MLS Cup</a> </li><li> <a id="CL3Menu__ctl46_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=664\')">MLS - Playoffs</a> </li><li> <a id="CL3Menu__ctl48_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=670\')">MLS - Preseason</a> </li><li> <a id="CL3Menu__ctl50_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=667\')">MLS - Press Conferences</a> </li><li> <a id="CL3Menu__ctl52_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=407\')">Nationwide Conference</a> </li><li> <a id="CL3Menu__ctl54_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=363\')">NCAA</a> </li><li> <a id="CL3Menu__ctl56_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=661\')">New England Revolution</a> </li><li> <a id="CL3Menu__ctl58_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=660\')">New York Red Bulls</a> </li><li> <a id="CL3Menu__ctl60_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=971\')">Portuguese Premier League</a> </li><li> <a id="CL3Menu__ctl62_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=662\')">Real Salt Lake</a> </li><li> <a id="CL3Menu__ctl64_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=663\')">San Jose Earthquakes</a> </li><li> <a id="CL3Menu__ctl66_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=412\')">Spanish Primera Liga</a> </li><li> <a id="CL3Menu__ctl68_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=415\')">Tennents Scottish Cup</a> </li><li> <a id="CL3Menu__ctl70_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=410\')">UEFA Champions League</a> </li><li> <a id="CL3Menu__ctl72_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=411\')">UEFA Cup</a> </li><li> <a id="CL3Menu__ctl74_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=417\')">UEFA Euro 2008</a> </li><li> <a id="CL3Menu__ctl76_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=418\')">Other International Pro Leagues</a> </li><li> <a id="CL3Menu__ctl78_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=420\')">Other</a> </li></ul>&nbsp; </div></div> '],['2_22','<div id="divCL3Menu" class="cl3OutterDev"><div id="divCL3MenuSub" class="cl3InnerDev"> <ul id="CL3Menu"><li> <a id="CL3Menu__ctl2_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=421\')">ATP/Men</a> </li><li> <a id="CL3Menu__ctl4_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=423\')">Australian Open - Men</a> </li><li> <a id="CL3Menu__ctl6_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=424\')">Australian Open - Women</a> </li><li> <a id="CL3Menu__ctl8_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=431\')">Celebrity</a> </li><li> <a id="CL3Menu__ctl10_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=972\')">Davis Cup</a> </li><li> <a id="CL3Menu__ctl12_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=973\')">Federation Cup</a> </li><li> <a id="CL3Menu__ctl14_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=425\')">French Open - Men</a> </li><li> <a id="CL3Menu__ctl16_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=426\')">French Open - Women</a> </li><li> <a id="CL3Menu__ctl18_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=98\')">NCAA</a> </li><li> <a id="CL3Menu__ctl20_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=429\')">U.S. Open - Men</a> </li><li> <a id="CL3Menu__ctl22_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=430\')">U.S. Open - Women</a> </li><li> <a id="CL3Menu__ctl24_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=427\')">Wimbledon - Men</a> </li><li> <a id="CL3Menu__ctl26_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=428\')">Wimbledon - Women</a> </li><li> <a id="CL3Menu__ctl28_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=422\')">WTA/Women</a> </li><li> <a id="CL3Menu__ctl30_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=432\')">Other</a> </li></ul>&nbsp; </div></div> '],['2_23','<div id="divCL3Menu" class="cl3OutterDevWide"><div id="divCL3MenuSub" class="cl3InnerDevWide"> <ul id="CL3Menu"><li> <a id="CL3Menu__ctl2_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=974\')">Aussie Rules Football</a> </li><li> <a id="CL3Menu__ctl4_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=433\')">Award Ceremonies</a> </li><li> <a id="CL3Menu__ctl6_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=975\')">Badminton</a> </li><li> <a id="CL3Menu__ctl8_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=434\')">Billiards</a> </li><li> <a id="CL3Menu__ctl10_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=436\')">Bowling</a> </li><li> <a id="CL3Menu__ctl12_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=437\')">Boxing</a> </li><li> <a id="CL3Menu__ctl14_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=438\')">Cricket</a> </li><li> <a id="CL3Menu__ctl16_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=439\')">Cycling</a> </li><li> <a id="CL3Menu__ctl18_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=440\')">Darts</a> </li><li> <a id="CL3Menu__ctl20_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=441\')">Extreme Sports</a> </li><li> <a id="CL3Menu__ctl22_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=464\')">Fencing</a> </li><li> <a id="CL3Menu__ctl24_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=465\')">Field Hockey</a> </li><li> <a id="CL3Menu__ctl26_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=442\')">Figure Skating</a> </li><li> <a id="CL3Menu__ctl28_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=443\')">Fitness</a> </li><li> <a id="CL3Menu__ctl30_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=444\')">Gymnastics</a> </li><li> <a id="CL3Menu__ctl32_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=445\')">Horse Racing</a> </li><li> <a id="CL3Menu__ctl34_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=976\')">In Memoriam</a> </li><li> <a id="CL3Menu__ctl36_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=446\')">Lacrosse</a> </li><li> <a id="CL3Menu__ctl38_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=977\')">Martial Arts</a> </li><li> <a id="CL3Menu__ctl40_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=447\')">Poker/Gambling</a> </li><li> <a id="CL3Menu__ctl42_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=466\')">Polo</a> </li><li> <a id="CL3Menu__ctl44_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=448\')">Rodeo</a> </li><li> <a id="CL3Menu__ctl46_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=467\')">Rowing</a> </li><li> <a id="CL3Menu__ctl48_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=449\')">Rugby</a> </li><li> <a id="CL3Menu__ctl50_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=450\')">Running/Marathons</a> </li><li> <a id="CL3Menu__ctl52_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=435\')">Sailing/Yachting</a> </li><li> <a id="CL3Menu__ctl54_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=451\')">Softball</a> </li><li> <a id="CL3Menu__ctl56_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=468\')">Squash</a> </li><li> <a id="CL3Menu__ctl58_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=469\')">Surfing</a> </li><li> <a id="CL3Menu__ctl60_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=452\')">Swimming/Diving</a> </li><li> <a id="CL3Menu__ctl62_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=978\')">Table Tennis</a> </li><li> <a id="CL3Menu__ctl64_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=453\')">Track & Field</a> </li><li> <a id="CL3Menu__ctl66_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=454\')">Triathlons</a> </li><li> <a id="CL3Menu__ctl68_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=979\')">Ultimate Fighting</a> </li><li> <a id="CL3Menu__ctl70_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=470\')">Venues/Stadiums</a> </li><li> <a id="CL3Menu__ctl72_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=455\')">Volleyball</a> </li><li> <a id="CL3Menu__ctl74_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=471\')">Water Polo</a> </li><li> <a id="CL3Menu__ctl76_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=456\')">Weightlifting/Bodybuilding</a> </li><li> <a id="CL3Menu__ctl78_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=457\')">Winter Sports</a> </li><li> <a id="CL3Menu__ctl80_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=458\')">Wrestling</a> </li><li> <a id="CL3Menu__ctl82_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=459\')">Other</a> </li></ul>&nbsp; </div></div> '],['1_3',' <div class="cl2OutterDev"><div class="cl2InnerDev"> <ul id="nbCL2GlobalNav"><li OnMouseOver="showSubMenu(this,0,\'\');"> <a id="nbCL2GlobalNav__ctl2_hlNavLink" href="javascript:goToNavUrl(\'/default.asp?nbc1=3\')">Recent Events</a></li><li OnMouseOver="showSubMenu(this,0,\'\');"> <a id="nbCL2GlobalNav__ctl4_hlNavLink" href="javascript:goToNavUrl(\'/FeaturedCelebrities.aspx\')">Celebrities</a></li><li OnMouseOver="showSubMenu(this,0,\'\');"> <a id="nbCL2GlobalNav__ctl6_hlNavLink" href="javascript:goToNavUrl(\'/Headlines.aspx?NavTyp=CAL&amp;nbc1=3\')">Headlines</a></li><li OnMouseOver="showSubMenu(this,0,\'\');"> <a id="nbCL2GlobalNav__ctl8_hlNavLink" href="javascript:goToNavUrl(\'/FeaturedEvents.aspx?ci=3\')">Featured Events</a></li><li><hr></li></ul> <ul id="CL2Menu"><li OnMouseOut="hideSubMenu(event);" OnMouseOver="showSubMenu(this,24, \'News\');"><a id="CL2Menu__ctl2_hlNavLink" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=2&amp;ci=24\')">Domestic</a><span id="CL2Menu__ctl2_spArrow">&rsaquo;</span></li><li OnMouseOut="hideSubMenu(event);" OnMouseOver="showSubMenu(this,25, \'News\');"><a id="CL2Menu__ctl4_hlNavLink" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=2&amp;ci=25\')">International</a><span id="CL2Menu__ctl4_spArrow">&rsaquo;</span></li><li OnMouseOut="hideSubMenu(event);" OnMouseOver="showSubMenu(this,26, \'News\');"><a id="CL2Menu__ctl6_hlNavLink" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=2&amp;ci=26\')">Business</a><span id="CL2Menu__ctl6_spArrow">&rsaquo;</span></li><li OnMouseOut="hideSubMenu(event);" OnMouseOver="showSubMenu(this,27, \'News\');"><a id="CL2Menu__ctl8_hlNavLink" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=2&amp;ci=27\')">Environment</a><span id="CL2Menu__ctl8_spArrow">&rsaquo;</span></li><li OnMouseOut="hideSubMenu(event);" OnMouseOver="showSubMenu(this,28, \'News\');"><a id="CL2Menu__ctl10_hlNavLink" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=2&amp;ci=28\')">Politics</a><span id="CL2Menu__ctl10_spArrow">&rsaquo;</span></li><li OnMouseOut="hideSubMenu(event);" OnMouseOver="showSubMenu(this,29, \'News\');"><a id="CL2Menu__ctl12_hlNavLink" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=2&amp;ci=29\')">More News</a><span id="CL2Menu__ctl12_spArrow">&rsaquo;</span></li></ul> &nbsp; </div></div>'],['2_24','<div id="divCL3Menu" class="cl3OutterDev"><div id="divCL3MenuSub" class="cl3InnerDev"> <ul id="CL3Menu"><li> <a id="CL3Menu__ctl2_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=100\')">Other</a> </li></ul>&nbsp; </div></div> '],['2_25','<div id="divCL3Menu" class="cl3OutterDev"><div id="divCL3MenuSub" class="cl3InnerDev"> <ul id="CL3Menu"><li> <a id="CL3Menu__ctl2_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=101\')">Other</a> </li></ul>&nbsp; </div></div> '],['2_26','<div id="divCL3Menu" class="cl3OutterDev"><div id="divCL3MenuSub" class="cl3InnerDev"> <ul id="CL3Menu"><li> <a id="CL3Menu__ctl2_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=358\')">Corporate</a> </li><li> <a id="CL3Menu__ctl4_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=359\')">Technology</a> </li><li> <a id="CL3Menu__ctl6_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=102\')">Other</a> </li></ul>&nbsp; </div></div> '],['2_27','<div id="divCL3Menu" class="cl3OutterDev"><div id="divCL3MenuSub" class="cl3InnerDev"> <ul id="CL3Menu"><li> <a id="CL3Menu__ctl2_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=103\')">Other</a> </li></ul>&nbsp; </div></div> '],['2_28','<div id="divCL3Menu" class="cl3OutterDev"><div id="divCL3MenuSub" class="cl3InnerDev"> <ul id="CL3Menu"><li> <a id="CL3Menu__ctl2_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=104\')">Other</a> </li></ul>&nbsp; </div></div> '],['2_29','<div id="divCL3Menu" class="cl3OutterDev"><div id="divCL3MenuSub" class="cl3InnerDev"> <ul id="CL3Menu"><li> <a id="CL3Menu__ctl2_hlCL3" href="javascript:goToNavUrl(\'/EventListings.aspx?cl=3&amp;ci=105\')">Other</a> </li></ul>&nbsp; </div></div> '],['1_17',' <div class="cl2OutterDev"><div class="cl2InnerDev"> <ul id="CL2Menu"></ul> &nbsp; </div></div>'],['1_18',' <div class="cl2OutterDev"><div class="cl2InnerDev"> <ul id="CL2Menu"><li OnMouseOver="showSubMenu(this, 0, \'\');" style="height:auto"><a id="CL2Menu__ctl2_hlNavLink" href="http://www.punchstock.com" target="_blank">A full range of Creative imagery is available from our partner PunchStock.</a></li></ul> &nbsp; </div></div>'],['0_0','']];
//End Menu //

//Banner Footer//

<!--hide this script from non-javascript-enabled browsers

var message="Sorry, that function is disabled."; // Message for the alert box
function click(e) {
	if (document.all) {
		if (event.button == 2) {
			alert(message);
			return false;
		}
	}
	if (document.layers) {
		if (e.which == 3) {
		alert(message);
		return false;
		}
	}
}
//if (document.layers) {
//	document.captureEvents(Event.MOUSEDOWN);
//}
//document.onmousedown=click;

function HandleCat(f) {
	//alert ("hello")
	var form =document.forms["frmCtgry"];
	var tFlag;
	for(var i=0;i<form.ctgryI.length;i++)
	{
		if(form.ctgryI[i].selected)
		{
		if (form.ctgryI[i].value =="-1")
		{
		alert("Please select a channel.");
		return false;
		}
		}
	  
	}
	return true
}

function chkSearchStr(f,logF) {

	if ((logF == 0) && (f.selSearch.options[f.selSearch.selectedIndex].value != "C")) {
		open_window("PopupDoc.asp?doctyp=login","login","scrollbars=no,menubar=no,width=300,height=260,resizable=yes");
		return false;
	}
	
	//if (logF == 0) {
	//	open_window("PopupDoc.asp?doctyp=login","login","scrollbars=no,menubar=no,width=300,height=260,resizable=yes");
	//	return false
	//}
	
	if(f.txtSearch.value=="") {
		alert(ErrMsg(240));
		return false;
		} 
			
	if((isNaN(f.txtSearch.value)) && ((f.selSearch.options[f.selSearch.selectedIndex].value == "I") || (f.selSearch.options[f.selSearch.selectedIndex].value == "E"))){
		alert("Please enter a number to search.");
		return false;
		}
	
	if((!(isNaN(f.txtSearch.value))) && ((f.selSearch.options[f.selSearch.selectedIndex].value == "I") || (f.selSearch.options[f.selSearch.selectedIndex].value == "E"))){
		if (parseInt(f.txtSearch.value) > 2147483647) {
			alert("The number you entered is too big.");
			return false;
		}
		if (parseInt(f.txtSearch.value) < 0) {
			alert("Please enter a positive number.");
			return false;
		}
		
		if (f.selSearch.options[f.selSearch.selectedIndex].value == "I") {
		
			if (f.NavBarC1.value == 17) {
				document.frmSortingPgHeading.hidItemStr2.value = f.txtSearch.value + '-H85W128-1,';
				window.open("http://" + document.frmPreviewServer.PreviewServer.value + '/mvMediaPlayer.asp?ItemI=' + f.txtSearch.value + '&ci=1&PItemI=' + f.txtSearch.value + '-H85W128&NItemI=' + f.txtSearch.value + '-H85W128&bi=1&ei=1&rc=1&df=1&pl=1&isCL04F=1','link','scrollbars=yes, status=yes,resizable=yes,width=750,height=500,top=0,left=0');
				return false;
			}
			else
			{
			f.action="ItemDescription.asp?ItemI=" + f.txtSearch.value;
			f.submit();
			return true;
			}
		}
	}

}
		
function checkInp(f) {
	//alert("window.screen.availWidth: " +  window.screen.availWidth + "\n" + "window.screen.availHeight: " +  window.screen.availHeight);
	document.frmLgn.winWd.value = window.screen.availWidth;
	document.frmLgn.winHt.value = window.screen.availHeight;
	//alert (document.frmLgn.winWd.value + ", " + document.frmLgn.winHt.value)
	/*
	if ((document.frmLgn.UsrN.value == "") || (document.frmLgn.UsrN.length == 0)) 
	{
		alert("Please enter your username.")
		return false;
	} 
	else 
	{
		if ((document.frmLgn.Pwd.value == "") || (document.frmLgn.Pwd.length == 0)) 
		{
			alert("Please enter your password.")
			return false;
		} 
		else 
		{
			return true;
		}
	}
	*/
	return true;
}
		

function open_window(url,name,features){
	popup=window.open(url,name,features);
	if (window.focus)
		popup.focus();
}

function PPWin() {
	PPWind=window.open("","PPWind","resize=no,toolbar=no,scrollbars=yes,width=400,height=300");
}

function UAWin() {
	UAWind=window.open("","UAWind","resize=no,toolbar=no,scrollbars=yes,width=400,height=300");
}
function CAWin() {
	CAWind=window.open("","CAWind","resize=no,toolbar=no,scrollbars=yes,width=400,height=300");
}

//for page select box in Sub SortingPgHeading in SortHeading.asp
function GoToPage(form, CurrPage) {
var selIndex;
	for (x=0; x<form.elements.length; x++) {
		if (form.elements[x].name=="selPage") {	//normally there are 2 select controls called selPage (located Top and Bottom of page)
			selIndex=x;							//if Top control is used it's selected page will be != to CurrPage otherwise it will be = to CurrPage, in which case this loop will not break and will continue on to find the 2nd (bottom) control and use selected value of that control
			if (CurrPage!=form.elements[x].options[form.elements[x].selectedIndex].value) {	
				break;
			}	
		}
	}
	form.action=form.action + "&PageNum=" + form.elements[x].options[form.elements[x].selectedIndex].value;
	form.submit();
}

//For BACK and NEXT
function GoToPageBackNext(form, PageToGoTo) {
	var cImgN;
	var LBImgStr = "";
	var cImgLen;
	var cImgChk;
	var LbImg;
	var cImgI;
	//alert(form.elements.length)

	if(form.elements.length > 0){

		for (x=0; x<form.elements.length; x++) {
			LbImg = form.elements[x];
			cImgN = LbImg.name;
			cImgChk = LbImg.checked;
					
			if ((cImgN.substr(0,6)=="chkImg") && (cImgChk == true)) {	
				cImgLen = cImgN.length;
				cImgI = cImgN.substr(6,cImgLen-6);
				LBImgStr = LBImgStr + cImgI + ",";
				//alert(cImgLen + " " + cImgI + " " + LBImgStr);

			}
			
		}
	//	alert(PageToGoTo);
		
		if (LBImgStr != null){
			form.LBImgStr.value = LBImgStr;
			form.action=form.action + "&PageNum=" + PageToGoTo;
			//form.action=form.action + "&PageNum=" + form.elements[x].options[form.elements[x].selectedIndex].value
			form.submit();
		}	
	}
}

//FOR SelPage
function GoToPageBackNext_DDL(formName,theDDL) {
	var cImgN;
	var LBImgStr = "";
	var cImgLen;
	var cImgChk;
	var LbImg;
	var cImgI;
	var pageToGoTo;

	for (x=0; x < formName.elements.length; x++) {
		LBImg = formName.elements[x];
		cImgN = LBImg.name;
		cImgChk = LBImg.checked;
				
		if ((cImgN.substr(0,6)=="chkImg") && (cImgChk == true)) {	
			cImgLen = cImgN.length;
			cImgI = cImgN.substr(6,cImgLen-6);
			LBImgStr = LBImgStr + cImgI + ",";
		}
		
	}
	pageToGoTo = eval(theDDL.options[theDDL.selectedIndex].value);
	formName.LBImgStr.value = LBImgStr;
	formName.action=formName.action + "&PageNum=" + pageToGoTo;
	//alert(formName.action);
	//form.action=form.action + "&PageNum=" + form.elements[x].options[form.elements[x].selectedIndex].value
	formName.submit();
}


//-->
// End Banner Footer//

function rollOverImgOver(sender, imgSrc)
{
	sender.src = imgSrc;
}
function rollOverImgOut(sender, imgSrc)
{
	sender.src = imgSrc;
}

function GetShrtN(sender)
{
	var objShrtN;
	var objCL4I;
	var objhidCL4I;
	var objhidShrtCL4N;
		
	objShrtN = document.getElementById(GetClientIDFromSibling(sender,"txtShrtCL4N"));
	objCL4I  = document.getElementById(GetClientIDFromSibling(sender,"hidlblCtgyLvl04I"));
	
	
	objhidCL4I = document.getElementById("hidCL4I");
	objhidCL4I.value = objCL4I.value;
	
	
	objhidShrtCL4N = document.getElementById("hidShrtCL4N");
	objhidShrtCL4N.value = objShrtN.value;
	return true;	
	
}

function fnFtrdPhgrSlideShow(pDirection){
		
		if (document.getElementById("imgFtrdPhgr")) {
			ImgNum = ImgNum + pDirection;
			if (ImgNum > ImgLength - 1){
				ImgNum = 0;
			}
			if (ImgNum < 0) {
				ImgNum = ImgLength - 1;
			}
			try
			{
				document.getElementById("imgFtrdPhgr").src = newFtrdPhgrSlideShow[ImgNum][2];
				document.getElementById("aFtrdPhgr").href = newFtrdPhgrSlideShow[ImgNum][1];
				document.getElementById("aFtrdPhgrBrndN").href= newFtrdPhgrSlideShow[ImgNum][1];
				document.getElementById("spFtrdPhgrBrndN").innerHTML = "<font class='smBoldTxt' color='white'>" + newFtrdPhgrSlideShow[ImgNum][0] + "</font>";
				document.getElementById("spFtrdPhgrIndex").innerHTML = "<font class='smBoldTxt' color='white'>" + (parseInt(ImgNum) + 1) + " of " + ImgLength + "</font>";
			}
			catch(e)
			{
				alert(e);
			}
		}
		else
		{
			alert('Cant find elem imgFtrdPhgr');
		}
}


/***** REGISTRATION PROCESS VALIDATION FUNCTION FOR FORM, RETURNS TRUE OR FALSE FOR FORM SUBMISSION***********/
function validate(sender,bool) {
  if (window.navigator.appName.toLowerCase().indexOf("netscape") > -1) {
          elForm = document.forms["form"];
      }
      else {elForm = document.form;}
             
  var elem = elForm.elements;
  var elError = document.getElementById('spanError');
  var objChkBill =document.getElementById('paymentInfo_chkBilling');
  
  if(document.getElementById('password')!=null){ //First password text field in Login Info.
       var password01 =document.getElementById('password').getElementsByTagName('input')[0];
    }

  if((document.getElementById('email')!= null) ||(document.getElementById('email')!=null) ){  //First email text field in Personal Info.
       var email01 =document.getElementById('email').getElementsByTagName('input')[0];
       var email02 =document.getElementById('cnfmemail').getElementsByTagName('input')[0];
     }
   
  if(document.getElementById('username')!= null ){//Username
        var usrName =document.getElementById('username').getElementsByTagName('input')[0];
     }  
     
  var errorLabel = GetControlFromSibling(sender,"acceptRequired");//Error label for User Agreement
  var pass= true;
 
  for (i=0;i<elForm.length;i++) {
    var tempobj=elForm.elements[i];
    if (tempobj.className.substring(0,8)=="required" ) {  
        tempobj.style.background =''; 
        if(tempobj.value.length>1){ 
            // tempobj.parentNode.childNodes[5].className='elHide smTxt';
              document.getElementById(tempobj.parentNode.id).lastChild.previousSibling.className='elHide smTxt';
             }
       
        if (((tempobj.type== "text"||tempobj.type=="textarea")&&
          tempobj.value=='')||(tempobj.type.toString().charAt(0)=="s"&&
          tempobj.selectedIndex==0)) {
                    pass=false; break;
                }
         }
         
        /*******EMAIL VALIDATION*****************/
          if (tempobj.className.indexOf("required email")!=-1  ) {
            tempobj.style.background ='';  
            if(tempobj.value.indexOf("@")== -1 || tempobj.value.indexOf(".")==-1){
             //tempobj.parentNode.childNodes[5].className='elHide smTxt';
           
           if(eval(bool)==true){
                document.getElementById('spanError').className ='elShow error';
               }else{
            document.getElementById(tempobj.parentNode.id).lastChild.previousSibling.className='elShow smTxt';
             }
               pass=false; break;
               
             }
            if(tempobj.id == email02.id){//Email confirmation
                if(tempobj.value != email01.value){
                    tempobj.style.background ='red';
                   document.getElementById(tempobj.parentNode.id).lastChild.previousSibling.className='elShow smTxt';
                   pass=false; break;             
                } 
             }
        }           
       /**USERNAME**/  
       if( tempobj.className.indexOf("required username")!=-1 && tempobj.value==''){pass=false;break;}
       if(usrName !=null){
          
         if((tempobj.id == usrName.id && tempobj.value.length<6)||(tempobj.id == usrName.id && tempobj.value.length>16))  {
            //alert(tempobj.value.substring(tempobj.value.length-1,tempobj.value.length))
            tempobj.style.background ='red';
            document.getElementById(tempobj.parentNode.id).lastChild.previousSibling.className='elShow smTxt';
            pass=false; break;
          
           }
         }      
         /*****PASSWORD VALIDATION****************/
          if(tempobj.type =="password" && tempobj.value==''){pass=false;break; }
          if((tempobj.className.indexOf("required password")!=-1 && tempobj.type =='password' ) ){
            if(tempobj.value != password01.value || tempobj.value == usrName.value){ //Password can't be Username
            //alert("THIS IS: "+usrName.value);
               tempobj.style.background ='red';
                document.getElementById(tempobj.parentNode.id).lastChild.previousSibling.className='elShow smTxt';
               pass=false; break;
               
                }
          }        
        /*****USER AGREEMENT VALIDATION**********/
         if(tempobj.parentNode.className.indexOf("required checkbox")!=-1 && tempobj.type=="checkbox"){
            tempobj.style.background ='';
            if(tempobj.checked ==false){
               // document.getElementById(tempobj.parentNode.parentNode.id).lastChild.previousSibling.className='elShow smTxt';
    
                //errorLabel.className ='elShow error';
                document.getElementById('accept').getElementsByTagName('span')[1].className ='elShow error';
                return false;
                }
         }
      
 }//Ends for loop
 
if (!pass) {
            tempobj.focus(); //tempobj.select();
            tempobj.style.background ='red';
           // tempobj.parentNode.childNodes[5].className='elShow smTxt'; 
            if(eval(bool)==true){
            
                elError.className ='elShow error';
                elError.scrollIntoView();
                elError.innerHTML =document.getElementById(tempobj.parentNode.id).lastChild.previousSibling.innerHTML
                }else{
           document.getElementById(tempobj.parentNode.id).lastChild.previousSibling.className='elShow smTxt';
              }
            return false;
    } else {
            return true;
    }
    
}//ENDS VALIDATE FUNCTION

/*BILLING INFORMATION SECTION IF DIFFERENT FROM USER INFORMATION. 
TOGGLES BILLING FIELDS & ACTIVATES/DEACTIVATES VALIDATION WHEN THE CHECK BOX'S ONCHANGE EVENT*/
function toggleBill(objName,reference){

		//if (document.forms['form'].PaymentInfo_chkBilling.checked ==false ){
		if (document.forms['form'].MainRegion_frmSubscriberRegster_cntPaymentInfo_chkBilling.checked ==false ){
			if(document.getElementById && document.getElementById(objName)!= null){
				document.getElementById(reference).className= 'elShowBilling';
			    }
			    
			 if(document.getElementById){
                var billInputs =
                document.getElementById('checkBilling').getElementsByTagName('input');
                 for(var i=0; i<billInputs.length;i++){
                   if(billInputs[i].tabIndex =='41' || billInputs[i].tabIndex=='45'){
                     billInputs[i].className = 'txt';
                     }
                      else billInputs[i].className = 'required';
                   
                    
                       }
                  }    
			    
		} else{
		         document.getElementById(reference).className= 'elNone';//Ends if checkbox is not check
		   
			     if(document.getElementById){
                    var billInputs =
                    document.getElementById('checkBilling').getElementsByTagName('input');
                     for(var i=0; i<billInputs.length;i++){
                          billInputs[i].className = 'txt';
                         // alert(billInputs[i].id+" and class name is: "+billInputs[i].getAttribute('class'));
                           }
                      }
			    
		         }

	
}//Ends function


function toggleBilling(type){

	if(type=='billing'){
	   var index = document.getElementById('country_bill').getElementsByTagName('select')[0];
	    if(index.value=='225'){
			if(document.getElementById){
			document.getElementById('state_bill').style.visibility ='visible';document.getElementById('state_bill').getElementsByTagName('select')[0].className='required';document.getElementById('state_bill').getElementsByTagName('span')[1].className='elHide';
			document.getElementById('zipcode_bill').style.visibility ='visible';document.getElementById('zipcode_bill').getElementsByTagName('input')[0].className='required';document.getElementById('zipcode_bill').getElementsByTagName('span')[1].className='elHide';
			//document.getElementById('province_bill').className ='elNone';
			//document.getElementById('postalcode_bill').className ='elNone';
			}
		 }else if(index.value !='225'){
				if(document.getElementById){
				document.getElementById('state_bill').style.visibility ='hidden';document.getElementById('state_bill').getElementsByTagName('select')[0].className='txt';document.getElementById('state_bill').getElementsByTagName('span')[1].className='elHide';
				document.getElementById('zipcode_bill').style.visibility ='hidden';document.getElementById('zipcode_bill').getElementsByTagName('input')[0].className='txt';document.getElementById('zipcode_bill').getElementsByTagName('span')[1].className='elHide';
				//document.getElementById('province_bill').className ='elShowPostal';
				//document.getElementById('postalcode_bill').className ='elShowPostal';
				}
			}
	    
       }//ENDS TYPE BILLING
       
       if(type == 'user'){
            var index =document.getElementById('country').getElementsByTagName('select')[0];
            if( index.value=='225'){
			    if(document.getElementById){
			        document.getElementById('state').style.visibility ='visible';document.getElementById('state').getElementsByTagName('select')[0].className='required';document.getElementById('state').getElementsByTagName('span')[1].className='elHide';
			        document.getElementById('zipcode').style.visibility ='visible';document.getElementById('zipcode').getElementsByTagName('input')[0].className='required';document.getElementById('zipcode').getElementsByTagName('span')[1].className='elHide';
			        document.getElementById('province').className ='elNone';
			        document.getElementById('postalcode').className ='elNone';
			}
		           }else if(index.value !='225'){
				    if(document.getElementById){
				    document.getElementById('state').style.visibility ='hidden';document.getElementById('state').getElementsByTagName('select')[0].className='txt';document.getElementById('state').getElementsByTagName('span')[1].className='elHide';
				    document.getElementById('zipcode').style.visibility ='hidden'; document.getElementById('zipcode').getElementsByTagName('input')[0].className='txt';document.getElementById('zipcode').getElementsByTagName('span')[1].className='elHide';
				    
				    document.getElementById('province').className ='elShowPostal';
				    document.getElementById('postalcode').className ='elShowPostal';
				}
           }
	}
	
}//Ends toggleBilling function

/*REGULAR EXPRESSION VALIDATION FOR SPECIAL ASCII CHARACTERS IN USERNAME & PASSWORD
FIELDS OF RESGISTRATION PROCESS*/
function validChars(field) {
    var re = /^[A-z0-9-'_']*$/;
    if (!re.test(field.value)) {
        alert("Only letters, numbers, underscore('_')and hyphen('-') characters are allowed!");
        field.value = field.value.replace(/[^A-z0-9-'_']/g,"");//Replace forbidden character in form with blank onKe
        }
     }

/*CHECK LENGTH OF PASSWORD TO MINIMUM*/
function chkLen(obj){if(obj.length<6){ alert('Password field must be a minimum of 6 character.'); }}

/*CREDIT CARD NUMBER VALIDATION	FOR REGISTRATION PROCESS*/     
function validateCredit(ccNumb,ref) {  
    var valid = "0123456789";  var len = ccNumb.length;  var iCCN = parseInt(ccNumb); 
    var sCCN = ccNumb.toString(); sCCN = sCCN.replace (/^\s+|\s+$/g,''); var iTotal = 0;  
    var bNum = true; var bResult = false; var temp; var calc;  

// Determine if the ccNumb is in fact all numbers
    for (var j=0; j<len; j++) {
        temp = "" + sCCN.substring(j, j+1);
            if (valid.indexOf(temp) == "-1"){bNum = false;}
        }
// if it is NOT a number, you can either alert to the fact, or just pass a failure
    if(!bNum){bResult = false; }

    if((len == 0)&&(bResult)){  bResult = false;} else{  
        if(len >= 15){  // 15 or 16 for Amex or V/MC
            for(var i=len;i>0;i--){  
                calc = parseInt(iCCN) % 10;  calc = parseInt(calc); iTotal += calc; i--;  
                iCCN = iCCN / 10; calc = parseInt(iCCN) % 10; calc = calc *2;        
      // Instead of some screwy method of converting 16 to a string and then parsing 1 and 6 and then adding them to make 7,
      // Switch statement to change the value of calc2 to 7 if 16 is the multiple.
      switch(calc){
        case 10: calc = 1; break;       //5*2=10 & 1+0 = 1
        case 12: calc = 3; break;       //6*2=12 & 1+2 = 3
        case 14: calc = 5; break;       //7*2=14 & 1+4 = 5
        case 16: calc = 7; break;       //8*2=16 & 1+6 = 7
        case 18: calc = 9; break;       //9*2=18 & 1+8 = 9
        default: calc = calc;           //4*2= 8 &   8 = 8  -same for all lower numbers
      }                                               
    iCCN = iCCN / 10;  
    iTotal += calc;  
  }  // END OF LOOP
     if ((iTotal%10)==0){ bResult = true; } else {
         bResult = false;  
    }
  }
}
// change alert to on-page display or other indication as needed.
if(bResult) {
    if(document.getElementById){
        var elCardNum = document.getElementById(ref).getElementsByTagName('input')[0];elCardNum.style.background ='';    
    }
}
if(!bResult){
  alert("This is NOT a valid Credit Card Number!");
    if(document.getElementById){
        var elCardNum = document.getElementById(ref).getElementsByTagName('input')[0];elCardNum.value =""; elCardNum.style.background ='red'; 
    }
}
  return bResult; // Return the results

}
// -->
    
/* CHECKS FOR SELECTION OF SUBSCRIPTION SERVICES IN REGISTRATION PROCESS BEFORE POSTING FROM */
function subscriptionCheck(id){
	 if (document.getElementById){
	    var radioFree = document.getElementById('free').getElementsByTagName('input')[0];
	    var radioBasic = document.getElementById('basic').getElementsByTagName('input')[0];
	    var radioPlus = document.getElementById('plus').getElementsByTagName('input')[0];
	    var radioPremium = document.getElementById('premium').getElementsByTagName('input')[0];
	    var regBusiness =document.getElementById('busAccount');

	 
	     if(id='CHECK'){
		     if((radioFree.checked !=true && radioBasic.checked !=true) && (radioPremium .checked!=true && radioPlus.checked !=true)){
		         alert('Please select one of the subscription services radio buttons!');return false;
		           }else{return true;}
    		
		    }
		
	}//Ends dom check
		
}//Ends subscriptionCheck function

window.onload =function(){//On Post back for registration confirmation, show and hide the designated text fields.
    if(document.getElementById){
        if(document.getElementById('checkboxBilling') !=null){
            if (document.forms['form'].MainRegion_frmSubscriberRegster_cntPaymentInfo_chkBilling.checked ==false ){
                document.getElementById('checkBilling').className= 'elShowBilling';
            
            }
          }
           
         if(document.getElementById('country')!=null)
         {
           var index =document.getElementById('country').getElementsByTagName('select')[0];
             if( index!=null && index.value!='225'){
                 document.getElementById('state').style.visibility ='hidden';document.getElementById('state').getElementsByTagName('select')[0].className='txt';
                 document.getElementById('zipcode').style.visibility ='hidden';document.getElementById('zipcode').getElementsByTagName('input')[0].className='txt';
                  document.getElementById('province').className ='elShowPostal'; document.getElementById('postalcode').className ='elShowPostal';
                   
                    }
         }
         
         if(document.getElementById('country_bill')!=null){
          var indexbill =document.getElementById('country_bill').getElementsByTagName('select')[0];
          
              if(indexbill!=null &&indexbill.value != '225'){
                 document.getElementById('state_bill').style.visibility ='hidden';document.getElementById('state_bill').getElementsByTagName('select')[0].className='txt';
                 document.getElementById('zipcode_bill').style.visibility ='hidden';document.getElementById('zipcode_bill').getElementsByTagName('input')[0].className='txt';
                 /* document.getElementById('province_bill').className ='elShowPostal'; document.getElementById('postalcode_bill').className ='elShowPostal';*/
                   
                    }
              }  
                  
         
}//Ends docGetElById

}//Ends function