// JavaScript Document
function LaunchDocument(doc){
    window.open(doc,'CalamosDocument','width=600,height=450,resizable=yes,status=yes');
}
function LaunchBrowser(url){
    window.open(url,'CalamosDocument','width=600,height=450,toolbar=yes,scrollbars=yes,scrolling=yes,resizable=yes,menubar=yes,menu=yes,status=yes');
}
function LaunchFixed(url, parms){
    window.open(url,'CalamosDocument',parms);
}
function clickGo(e, funct, param){ 
    if (event.keyCode == 13){ 
        if(funct=='Top_Search'){Search(param); }
        else if(funct=='WMTop_Search'){WMSearch(param);}
        else{return false;}
    }     
}
function addbookmark()
{
bookmarkurl="http://www.calamos.com/conferencecall"
bookmarktitle="CALAMOS INVESTMENTS Conference Call Center"
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}
function sideNavHover(element, style)
{
 var elm = document.getElementById(element);
// elm.className = style;
}

//: Collection of Javascript Functions for Tab Tables
//: Last Modified 03.30.2004 RMA
//: The Main Function to Swap the Images and Content
function swap(ToShow, ToHide)
{
 //: Grab valid DIV objects based on the image thats clicked
 var oDivToShow = getDivObj(ToShow + "Div");
 var oDivToHide = getDivObj(ToHide + "Div");
 
 //: Show and hide the respective DIV tags
 oDivToShow.style.display = 'block';
 oDivToHide.style.display = 'none';
 
 //: Swap the Images of the tabs
 document.images[ToShow].src = "images/" + ToShow + "_on.gif";
 document.images[ToHide].src = "images/" + ToHide + "_off.gif"; 
}
//: Returns a Valid DIV object
function getDivObj(divID)
{
 return ( (document.all) ? document.all[divID] : (document.getElementById) ? document.getElementById(divID) : document.layers[divID] )
}
function OpenGraph(image)
{
 window.open(image,'book','width=535,height=600,toolbar=no,scrollbars=yes,scrolling=yes,resizable=no,menubar=no,menu=no');
 
}
function swap(ToShow, ToHide)
{
 //: Grab valid DIV objects based on the image thats clicked
 var oDivToShow = getDivObj(ToShow + "Div");
 var oDivToHide = getDivObj(ToHide + "Div");
 
 //: Show and hide the respective DIV tags
 oDivToShow.style.display = 'block';
 oDivToHide.style.display = 'none';
 
 //: Swap the Images of the tabs
 document.images[ToShow].src = "images/" + ToShow + "_on.gif";
 document.images[ToHide].src = "images/" + ToHide + "_off.gif"; 
}
//: Returns a Valid DIV object
function getDivObj(divID)
{
 return ( (document.all) ? document.all[divID] : (document.getElementById) ? document.getElementById(divID) : document.layers[divID] )
}
function jump(page)
{
 document.location.href = page;
}
function jumpOut(page)
{
    if(page.length > 0){
        window.open(page,'pdf','width=500,height=500,resizable=1,status=1,toolbar=1,location=1,menubar=1');
    }
}
function swapThirdNav(ImageID, bImageOn){
    imgobj = document.getElementById(ImageID);
    if(bImageOn == 1){
        imgobj.src='/images/thirdNavArrow.gif';
    }else{
        imgobj.src='/images/spacer.gif'; 
    }
}
function swapThirdNavThirdParty(ImageID, bImageOn){
    imgobj = document.getElementById(ImageID);
    if(bImageOn == 1){
        imgobj.src='http://www.calamos.com//images/thirdNavArrow.gif';
    }else{
        imgobj.src='http://www.calamos.com//images/spacer.gif'; 
    }
}
function swapImage2(ImageID, newImage)
{
    var imgobj = document.getElementById(ImageID);
    imgobj.src=newImage;
}

function jumpTarget(page)
{
window.location.href=this.options[this.selectedIndex].value;
}
function selIndex(page)
{
 for (var i = 0; i < document.all.tlNav.length; i++)
 {
  if (document.all.tlNav.options[i].value == page)
  {
   document.all.tlNav.options[i].selected = true;
  }
 }
}
function spawn(url,w,h){
 
 if (w == null)
  w = 760;
 if (h == null)
  h = 525;
  
var today = new Date();
g_winPopup=window.open(url,'win'+today.getSeconds(),'width='+w+',height='+h+',toolbar=yes,scrollbars=yes,scrolling=yes,resizable=yes,menubar=yes,menu=yes,status=yes');
}
function spawnMin(url,w,h){
 
 if (w == null)
  w = 760;
 if (h == null)
  h = 525;
  
var today = new Date();
g_winPopup=window.open(url,'win'+today.getSeconds(),'width='+w+',height='+h+',toolbar=no,scrollbars=no,scrolling=no,resizable=no,menubar=no,menu=no');
}
function spawnNamed(url,name,vert,horz,resizable)
{
 var newWindowWidth = (screen.width)/2;
 var newWindowHeight = (screen.height)/2;
 
 if (resizable == null)
  resizable = "yes";
 
 var top = 0;
 var left = 0;
 
 switch (vert)
 {
  case "top":
   top = 0;
   break;
  case "bottom":
   top = (screen.height - newWindowHeight)/2;
   break;
  case "center":
   top = (screen.height - newWindowHeight)/4;
   break;
  default:
   top = 0;
   break;
 }
 
 switch (horz)
 {
  case "left":
   left = 0;
   break;
  case "right":
   left = screen.width - newWindowWidth;
   break;
  case "middle":
   left = (screen.width - newWindowWidth)/2;
   break;
  default:
   left = 0;
   break;
 }  
 g_winPopup=window.open(url,name,'width='+ newWindowWidth +',height=' + newWindowHeight + ',top=' + top + ',left=' + left + ',location=yes,toolbar=yes,scrollbars=yes,scrolling=yes,menubar=yes,menu=yes,resizable=' + resizable + ',status=yes');
 g_winPopup.focus();
}
function download(url){
spawn(url,595,450);
}
function downloadPDF(selectObj)
{
 if(selectObj.selectedIndex != 0)
  download(selectObj.options[selectObj.selectedIndex].value);
}
function SetLinkBG()
{
 var sPath = window.location.pathname;
 var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
 
 var retval = "";
 
 for (var i = 0; i < document.links.length; i++)
 {
  linkPath = document.links[i].href
  shortPath = linkPath.substring(linkPath.lastIndexOf('/') + 1);
  if (shortPath == sPage && document.links[i].id == "")
  {
   //document.links[i].style.backgroundColor = "#ffffff";
   //document.links[i].style.fontWeight = "bold";
   document.links[i].style.textDecoration = "none";
   document.links[i].style.color = "black";
  }
  /*else if(shortPath == sPage && document.links[i].id != "")
  {
   document.links[i].style.backgroundColor = "white";
  }*/
 }
}
function SetHeaderLink(x)
{
 var sPath = window.location.pathname;
 var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
 
 var retval = "";
 
 for (var i = 0; i < document.links.length; i++)
 {
  linkPath = document.links[i].href
  shortPath = linkPath.substring(linkPath.lastIndexOf('/') + 1);
  if (document.links[i].id == x)
  {
   document.links[i].style.className = "Active";
 //document.links[i].style.color = "#663366";
  }
 }
}
function WriteHeader()
{
 var prodURL = "http://www.calamos.com/";
    document.write("<link href=\"" + prodURL + "style.css\" type=\"text/css\" rel=\"stylesheet\"><style>.secondaryNav2{display:none;}</style>");
    document.write("<table cellSpacing=\"0\" cellPadding=\"0\" width=\"100%\" border=\"0\"><tr><td valign=top class=\"header_top\" align=right></td><td width=\"100%\" class=\"header_top\" align=left>");
    document.write("<table width=\"860\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" >");
    document.write("<tr>");
    document.write("<td><img height=3 src=\"" + prodURL + "/images/spacer.gif\"></td>");
    document.write("</tr>");    
    document.write("<tr>");
    document.write("<td align=center><input name=\"tbHidden\" type=\"text\" id=\"tbHidden\" style=\"height:0px;width:0px;border:solid 0 #fff;\"/><a onmouseover=\"swapImage2('TopNav0','" + prodURL + "/images/UpArrow.gif');\" onmouseout=\"swapImage2('TopNav0','" + prodURL + "/images/spacer.gif');\" href=\"" + prodURL + "/library.aspx\">Literature</a></td>");
    document.write("<td>&nbsp;&nbsp;&nbsp;</td>");
    document.write("<td align=center><a onmouseover=\"swapImage2('TopNav1','" + prodURL + "/images/UpArrow.gif');\" onmouseout=\"swapImage2('TopNav1','" + prodURL + "/images/spacer.gif');\" href=\"" + prodURL + "/commentary.aspx\">Commentary</a></td>");
    document.write("<td>&nbsp;&nbsp;&nbsp;</td>");
    document.write("<td align=center><a onmouseover=\"swapImage2('TopNav2','" + prodURL + "/images/UpArrow.gif');\" onmouseout=\"swapImage2('TopNav2','" + prodURL + "/images/spacer.gif');\" href=\"" + prodURL + "/about.aspx\">About</a></td>");
    document.write("<td>&nbsp;&nbsp;&nbsp;</td>");
    document.write("<td align=center><a href=\"http://phx.corporate-ir.net/phoenix.zhtml?c=182276&p=irol-irhome\"  class=header_top_Selected>Investor Relations</a></td>");
    document.write("<td>&nbsp;&nbsp;&nbsp;</td>");
    document.write("<td align=center><a onmouseover=\"swapImage2('TopNav3','" + prodURL + "/images/UpArrow.gif');\" onmouseout=\"swapImage2('TopNav3','" + prodURL + "/images/spacer.gif');\" name=\"topCareers\" href=\"" + prodURL + "/careers.aspx\">Careers</a></td>");
    document.write("<td>&nbsp;&nbsp;&nbsp;</td>");
    document.write("<td align=center><a onmouseover=\"swapImage2('TopNav4','" + prodURL + "/images/UpArrow.gif');\" onmouseout=\"swapImage2('TopNav4','" + prodURL + "/images/spacer.gif');\" href=\"" + prodURL + "/contactus.aspx\">Contact Us</a></td>");
    document.write("<td>&nbsp;&nbsp;&nbsp;</td>");
    document.write("<td align=center><a onmouseover=\"swapImage2('TopNav5','" + prodURL + "/images/UpArrow.gif');\" onmouseout=\"swapImage2('TopNav5','" + prodURL + "/images/spacer.gif');\"href=\"" + prodURL + "/accountaccess.aspx\">Account Access</a></td>");
    document.write("<td>&nbsp;&nbsp;&nbsp;</td>");
    document.write("<td align=center><a onmouseover=\"swapImage2('TopNav6','" + prodURL + "/images/UpArrow.gif');\" onmouseout=\"swapImage2('TopNav6','" + prodURL + "/images/spacer.gif');\"href=\"" + prodURL + "/default.aspx?c=clear\" target=\"_new\">Our Sites</a></td>");
    document.write("<td>&nbsp;&nbsp;&nbsp;</td>");
    document.write("<td align=center><a onmouseover=\"swapImage2('TopNav7','" + prodURL + "/images/UpArrow.gif');\" onmouseout=\"swapImage2('TopNav7','" + prodURL + "/images/spacer.gif');\"href=\"" + prodURL + "/RSS.aspx\"><img src=\"" + prodURL + "/images/Icon_RSS2.gif\" border=0 > RSS</a></td>");
    document.write("<td>&nbsp;&nbsp;&nbsp;</td>");
    document.write("<!--<td width=80>&nbsp;&nbsp;&nbsp;</td>-->");
    document.write("<td align=\"right\" rowspan=3><input size=\"31\" onkeypress=\"return clickGo(event,'Top_Search',query.value)\" class=\"header_SearchTextBox\" id=\"query\" type=\"text\" onfocus=\"this.className='header_SearchTextBoxNoImage'\"></td><td align=\"right\" style=\"padding-left:1px;\" rowspan=3><a href=\"" + prodURL + "#\" onClick=\"Search(query.value);\"><img src=\"" + prodURL + "/images/header_button.jpg\" border=0></a></td></td>");
    document.write("</tr>");
    document.write("<tr>");
    document.write("<td align=center valign=bottom><img height=7 src=\"" + prodURL + "/images/spacer.gif\" ID=\"TopNav0\"></td>");
    document.write("<td></td>");
    document.write("<td align=center><img src=\"" + prodURL + "/images/spacer.gif\" ID=\"TopNav1\"></td>");
    document.write("<td></td>");
    document.write("<td align=center><img src=\"" + prodURL + "/images/spacer.gif\" ID=\"TopNav2\"></td>");
    document.write("<td></td>");
    document.write("<td align=center><img src=\"" + prodURL + "/images/UpArrow.gif\" ID=\"TopNav22\"></td>");
    document.write("<td></td>");
    document.write("<td align=center><img src=\"" + prodURL + "/images/spacer.gif\" ID=\"TopNav3\"></td>");
    document.write("<td></td>");
    document.write("<td align=center><img src=\"" + prodURL + "/images/spacer.gif\" ID=\"TopNav4\"></td>");
    document.write("<td></td>");
    document.write("<td align=center><img src=\"" + prodURL + "/images/spacer.gif\" ID=\"TopNav5\"></td>");
    document.write("<td></td>");
    document.write("<td align=center><img src=\"" + prodURL + "/images/spacer.gif\" ID=\"TopNav6\"></td>");
    document.write("<td></td>");
    document.write("<td align=center><img src=\"" + prodURL + "/images/spacer.gif\" ID=\"TopNav7\"></td>");
    document.write("<td></td>");
    document.write("</tr>");
    document.write("</table>");
   
    document.write("</td><td valign=top class=\"header_top\"></td></tr><tr><td class=header_mid_leftright></td><td class=\"header_mid_center\">");
   
     document.write("<table width=\"740\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" ><tr><td width=\"273\" rowspan=\"2\" valign=\"bottom\" style=\"PADDING-RIGHT: 0px; PADDING-LEFT: 20px; PADDING-BOTTOM: 10px; PADDING-TOP: 11px\"><a href=\"" + prodURL + "/IndividualInvestors.aspx\"><img src=\"" + prodURL + "images/header_CalamosLogo.jpg\" border=\"0\"></a></td><td align=\"right\" valign=\"bottom\" style=\"PADDING-RIGHT: 0px; PADDING-LEFT: 0px; PADDING-BOTTOM: 10px; PADDING-TOP: 3px\"><a href=\"" + prodURL + "/aboutsubscribe.aspx\"><img src=\"" + prodURL + "images/header_EmailAlerts.jpg\" border=\"0\">&nbsp;<img src=\"" + prodURL + "images/header_button.jpg\" border=0></a></td></tr></table></td><td class=\"header_mid_leftright\"></td></tr><tr><!--<td bgcolor=\"6a5c73\">&nbsp;</td>--><td bgcolor=\"6a5c73\" colspan=3>");
    document.write("<!--SECOND LEVEL NAV--><table width=\"\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" ><tr><td><div id=\"LeftSecondNavHeaderDiv\" style=\"WIDTH: 0px;\">&nbsp;</div></td>   <td style=\"border-right:1px solid white\"><a onMouseOver=\"swapImage2('secondnavhome','" + prodURL + "images/secondnavhome_on.gif');\" onMouseOut=\"swapImage2('secondnavhome','" + prodURL + "images/secondnavhome_off.gif');\" href=\"" + prodURL + "IndividualInvestors.aspx\"><img id=\"secondnavhome\" border=0 src=\"" + prodURL + "images/secondnavhome_off.gif\" alt=\"home\" /></a></td><td style=\"border-right:1px solid white\"><a onMouseOver=\"swapImage2('secondnavMutual','" + prodURL + "images/secondnavmutualfund_on.gif');\" onMouseOut=\"swapImage2('secondnavMutual','" + prodURL + "images/secondnavmutualfund_off.gif');\" href=\"" + prodURL + "mutualfunds.aspx\"><img ID=\"secondnavMutual\" border=0 src=\"" + prodURL + "images/secondnavmutualfund_off.gif\" alt=\"Mutual Funds\" /></a></td>  <td style=\"border-right:1px solid white\"><a onMouseOver=\"swapImage2('secondnavclosedend','" + prodURL + "images/secondnavclosedend_on.gif');\" onMouseOut=\"swapImage2('secondnavclosedend','" + prodURL + "images/secondnavclosedend_off.gif');\" href=\"" + prodURL + "closedend.aspx\"><img ID=\"secondnavclosedend\" border=0 src=\"" + prodURL + "images/secondnavclosedend_off.gif\" alt=\"Closed End Funds\" /></a></td><td style=\"border-right:1px solid white\"><a onMouseOver=\"swapImage2('secondnavprivateclients','" + prodURL + "images/secondnavprivateclients_on.gif');\" onMouseOut=\"swapImage2('secondnavprivateclients','" + prodURL + "images/secondnavprivateclients_off.gif');\" href=\"" + prodURL + "/pcg.aspx\"><img ID=\"secondnavprivateclients\" border=0 src=\"" + prodURL + "images/secondnavprivateclients_off.gif\" alt=\"Private Clients\" /></a></td><td><a onMouseOver=\"swapImage2('secondnavinstitutional','" + prodURL + "images/secondnavinstitutional_on.gif');\" onMouseOut=\"swapImage2('secondnavinstitutional','" + prodURL + "images/secondnavinstitutional_off.gif');\" href=\"" + prodURL + "institutional.aspx\"><img ID=\"secondnavinstitutional\" border=0 src=\"" + prodURL + "images/secondnavinstitutional_off.gif\" alt=\"Institutional Investors\" /></a></td><td><a onMouseOver=\"swapImage2('secondnavip','" + prodURL + "images/IP_on.gif');\" onMouseOut=\"swapImage2('secondnavip','" + prodURL + "images/IP_off.gif');\" href=\"http://www.calamos.com/ip/default.aspx\"><img ID=\"secondnavip\" border=0 src=\"" + prodURL + "images/IP_OFF.gif\" alt=\"Investment Professionals\" /></a></td></tr></table></td><!--<td bgcolor=\"6a5c73\">&nbsp;</td>--></tr>");
    // document.write("<!--THIRD LEVEL NAV--><tr style=\"margin-left: 0px\"><td class=\"header_thirdnav\" colspan=4 width=\"100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tr><td ><table cellSpacing=\"0\" cellPadding=\"0\" border=\"0\"><tr><td class=\"header_thirdnavtable\"><img src=\"" + prodURL + "images/spacer.gif\" width=4 height=9 border=0 ID=\"thirdnavarrow0\"/>&nbsp;<a href=\"http://phx.corporate-ir.net/phoenix.zhtml?c=182276&p=irol-invresources\" onmouseover=\"swapThirdNavThirdParty('thirdnavarrow0',1);\" onMouseOut=\"swapThirdNavThirdParty('thirdnavarrow0',0);\" >Investor Resources</a></td><td class=\"header_thirdnavtable\"><img src=\"" + prodURL + "images/spacer.gif\" width=4 height=9 border=0 ID=\"thirdnavarrow1\"/>&nbsp;<a href=\"http://phx.corporate-ir.net/phoenix.zhtml?c=182276&p=irol-news\" onmouseover=\"swapThirdNavThirdParty('thirdnavarrow1',1);\" onMouseOut=\"swapThirdNavThirdParty('thirdnavarrow1',0);\" >News</a></td><td class=\"header_thirdnavtable\"><img src=\"" + prodURL + "images/spacer.gif\" width=4 height=9 border=0 ID=\"thirdnavarrow2\"/>&nbsp;<a href=\"http://phx.corporate-ir.net/phoenix.zhtml?c=182276&p=irol-govHighlights\" onmouseover=\"swapThirdNavThirdParty('thirdnavarrow2',1);\" onMouseOut=\"swapThirdNavThirdParty('thirdnavarrow2',0);\" >Corporate Governance</a></td><td class=\"header_thirdnavtable\"><img src=\"" + prodURL + "images/spacer.gif\" width=4 height=9 border=0 ID=\"thirdnavarrow3\"/>&nbsp;<a href=\"http://phx.corporate-ir.net/phoenix.zhtml?c=182276&p=irol-reports\" onmouseover=\"swapThirdNavThirdParty('thirdnavarrow3',1);\" onMouseOut=\"swapThirdNavThirdParty('thirdnavarrow3',0);\" >Financial Reports</a></td><td class=\"header_thirdnavtable\"><img src=\"" + prodURL + "images/spacer.gif\" width=4 height=9 border=0 ID=\"thirdnavarrow4\"/>&nbsp;<a href=\"http://phx.corporate-ir.net/phoenix.zhtml?c=182276&p=irol-stockQuote\" onmouseover=\"swapThirdNavThirdParty('thirdnavarrow4',1);\" onMouseOut=\"swapThirdNavThirdParty('thirdnavarrow4',0);\" >Stock Information</a></td></tr></table></td></tr></table></td></tr></table><div align=\"left\" style=\"padding-left: 30px;\">");
}
function WriteFooter()
{
    var pgNum = "";
    var prodURL = "http://www.calamos.com/";
    
    switch (window.location.href)
    {
        case "http://localhost/IR/index.html":
            pgNum = "6013";
            break;
        //ir home page
        case "http://phx.corporate-ir.net/phoenix.zhtml?c=182276&p=irol-irhome":
            pgNum = "6013";
            break;
        //corp info
        case "http://phx.corporate-ir.net/phoenix.zhtml?c=182276&p=irol-homeprofile":
            pgNum = "6014";
            break;
        //officers
        case "http://phx.corporate-ir.net/phoenix.zhtml?c=182276&p=irol-governance":
            pgNum = "6015";
            break;
        //officers
        case "http://phx.corporate-ir.net/phoenix.zhtml?c=182276&p=irol-governance#board":
            pgNum = "6015";
            break;        
        //financial data
        case "http://phx.corporate-ir.net/phoenix.zhtml?c=182276&p=irol-financialdata":
            pgNum = "6020";
            break;
        //average coverage
        case "http://phx.corporate-ir.net/phoenix.zhtml?c=182276&p=irol-analysts":
            pgNum = "6021";
            break;
        //earnings estimates
        case "http://phx.corporate-ir.net/phoenix.zhtml?c=182276&p=irol-estimates":
            pgNum = "6022";
            break;
        //basic fundamentals
        case "http://phx.corporate-ir.net/phoenix.zhtml?c=182276&p=irol-fundamentals":
            pgNum = "6023";
            break;
        //history
        
        case "http://phx.corporate-ir.net/phoenix.zhtml?c=182276&p=irol-stockquote":
            pgNum = "6024";
            break;
        case "http://phx.corporate-ir.net/phoenix.zhtml?c=182276&p=irol-stockLookup":
            pgNum = "6024";
            break;
        //dividend history
        case "http://phx.corporate-ir.net/phoenix.zhtml?c=182276&p=irol-dividends":
            pgNum = "6025";
            break;
        //financial reports
        case "http://phx.corporate-ir.net/phoenix.zhtml?c=182276&p=irol-reports":
            pgNum = "6026";
            break;
        //SEC filings
        case "http://phx.corporate-ir.net/phoenix.zhtml?c=182276&p=irol-sec":
            pgNum = "6027";
            break;
        //infomation for investors
        case "http://phx.corporate-ir.net/phoenix.zhtml?c=182276&p=irol-inforforinvestor":
            pgNum = "6028";
            break;
        //event calendar
        case "http://phx.corporate-ir.net/phoenix.zhtml?c=182276&p=irol-calendar":
            pgNum = "6029";
            break;
        //press releases
        case "http://phx.corporate-ir.net/phoenix.zhtml?c=182276&p=irol-news":
            pgNum = "6030";
            break;
        //request information
        case "http://phx.corporate-ir.net/phoenix.zhtml?c=182276&p=irol-inforeq":
            pgNum = "6031";
            break;
        //email alerts
        case "http://phx.corporate-ir.net/phoenix.zhtml?c=182276&p=irol-alerts":
            pgNum = "6032";
            break;
        default:
            pgNum = "";
    }
    
document.write("<TABLE class=\"footer\" cellSpacing=\"0\" cellPadding=\"0\" width=\"740\" border=\"0\"><tr><td colspan=\"2\" valign=\"top\"><div align=\"right\" class=\"pageNumber\">" + pgNum + "</td></tr></table><div style='background-color: #d4cdba; margin-left:-10px;'><TABLE class=\"footer\" cellSpacing=\"0\" cellPadding=\"0\" width=\"740\" border=\"0\"><tr><td bgcolor=\"#d4cdba\"></td><td ><TABLE class=\"footer\" cellSpacing=\"0\" cellPadding=\"0\" width=\"740\" border=\"0\"><TBODY><TR><TD class=\"footerTD\" vAlign=\"top\"><div style=\"padding-bottom: 7px;\"><br>&#169; 2006 Calamos Holdings LLC. All Rights Reserved.<br><br>Calamos<sup>&#174;</sup>, CALAMOS INVESTMENTS<sup>&#174;</sup>, <em>Strategies for Serious Money</em><sup>&#174;</sup> and the Calamos<sup>&#174;</sup> logo are registered trademarks of Calamos Holdings LLC.</div><br><A href=\"" + prodURL + "Legal.aspx\">Important Legal Information</A> | <A href=\"" + prodURL + "Privacy.aspx\">Privacy Policy</A> | <A href=\"" + prodURL + "continuity.aspx\">Business Continuity</A> |<A onclick=\"LaunchBrowser('http://www.calamos.com/xdocs/GetFile.aspx?NodeID=8744');\" href=\"javascript:void(0);\">Code of Business Conduct and Ethics</A></p></TD></TR></TBODY></TABLE></td><td colspan=2></td></tr></table></div>");
}
function Search(query)
{
    document.location.href = "/search.aspx?qu=" + query;
}
function WriteHeaderICS()
{
 document.write("<table width=\"740\" border=\"0\" cellpadding=\"2\" cellspacing=\"0\" class=\"topNavBarBG\"> <tr> </tr> <TR>  <td align=\"right\" class=\"topLink2\" style=\"PADDING-RIGHT: 7px\"> <a href=\"#\" class=\"topLink2\">Library</a> &nbsp;|&nbsp; <a href=\"about.aspx\" class=\"topLink2\">  About</a> &nbsp;| &nbsp; <a href=\"contactus.aspx\" class=\"topLink2\">Contact Us</a> &nbsp;| &nbsp; <a href=\"hq.aspx\" class=\"topLink2\">Our Headquarters</a> &nbsp;|&nbsp;&nbsp;<a href=\"#\" class=\"topLink2\">Search</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href=\"#\" class=\"topLink2\">Account Access</a></td> </TR></table><table width=\"740\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"navTop\"> <tr>  <td width=\"273\" valign=\"bottom\" style=\"PADDING-RIGHT: 0px; PADDING-LEFT: 0px; PADDING-BOTTOM: 10px; PADDING-TOP: 0px\"><img src=\"http://www.calamos.com/images/navlogo_v4.gif\"></td>  <td align=\"right\" valign=\"bottom\" style=\"PADDING-RIGHT: 0px; PADDING-LEFT: 3px; PADDING-BOTTOM: 0px; PADDING-TOP: 3px\">&nbsp;</td> </tr></table><table width=\"740\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" xmlns:fo=\"http://www.w3.org/1999/XSL/Format\"><tr> <td class=\"navOff\" id=\"home\" onMouseOver=\"sideNavHover('home', 'navHover');\" onMouseOut=\"sideNavHover('home', 'navOff');\" onclick=\"window.location.href='http://www.calamos.com:8080/default.aspx'\">Home</td> <td class=\"navOff\" id=\"mutualfunds\" onMouseOver=\"sideNavHover('mutualfunds', 'navHover');\" onMouseOut=\"sideNavHover('mutualfunds', 'navOff');\" onclick=\"window.location.href='http://www.calamos.com:8080/mutualfunds.aspx'\">Mutual Funds</td> <td class=\"navOff\" id=\"closedend\" onMouseOver=\"sideNavHover('closedend', 'navHover');\" onMouseOut=\"sideNavHover('closedend', 'navOff');\" onclick=\"window.location.href='http://www.calamos.com:8080/closedend.aspx'\">Closed-End Funds</td> <td class=\"navOff\" id=\"privateclients\" onMouseOver=\"sideNavHover('privateclients', 'navHover');\" onMouseOut=\"sideNavHover('privateclients', 'navOff');\" onclick=\"window.location.href='http://www.calamos.com:8080/pcg.aspx'\">Private Clients</td> <td class=\"navOff\" id=\"indinvestors\" onMouseOver=\"sideNavHover('indinvestors', 'navHover');\" onMouseOut=\"sideNavHover('indinvestors', 'navOff');\" onclick=\"window.location.href='http://www.calamos.com:8080/institutional.aspx'\">Institutional Investors</td>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <td class=\"navOff\" id=\"invrel\" onMouseOver=\"sideNavHover('invrel', 'navHover');\" onMouseOut=\"sideNavHover('invrel', 'navOff');\" onclick=\"window.location.href='http://phx.corporate-ir.net/phoenix.zhtml?c=182276&p=irol-homeprofile'\">Investor Relations</td></tr></table>");
}
function WriteFooterICS()
{
 document.write('<table class="contentTable" cellSpacing="0" cellPadding="0" width="740" border="0"><tr><td colspan="2" valign="top"><div align="right" class="pageNumber">xxxx</div></td></tr></table><TABLE class="footer" cellSpacing="0" cellPadding="0" width="740" border="0"><TBODY><TR><TD class="footerTD" vAlign="top"><div style="padding-bottom: 7px;"><br>&#169; 2005 Calamos Holdings LLC. All Rights Reserved.<br>Calamos<sup>&#174;</sup>, CALAMOS INVESTMENTS<sup>&#174;</sup>, <em>Strategies for Serious Money</em><sup>&#174;</sup> and the Calamos<sup>&#174;</sup> logo are registered trademarks of Calamos Holdings LLC.</div><br><A href="http://www.calamos.com:8080/legal.aspx">Important Legal Information</A> | <A href="http://www.calamos.com:8080/privacy.aspx">Privacy Policy</A> </p></TD>');
}
function WriteDate()
{
 var mydate=new Date()
 var year=mydate.getYear()
 if (year < 1000)
 year+=1900
 var day=mydate.getDay()
 var month=mydate.getMonth()
 var daym=mydate.getDate()
 if (daym<10)
 daym="0"+daym
 var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
 var montharray=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
 document.write( dayarray[day]+", "+montharray[month]+" "+daym+", "+year);
}
 
function ImageMapJump(LinkID){
    var URL= document.getElementById(LinkID).href;
    document.location.href=URL;
}
 
function SetLinkStyle(x)
{
    var elm = document.getElementById(x);
    elm.style.textDecoration = "none";
    elm.style.color = "black";
}
 
function SwapImage(imagename, NewImage)
{
    document[imagename].src = NewImage;
}
/*
function changeshowdiv(divname) {
        identity=document.getElementById(divname);
        identity.className='showdiv';
        }
        
function changehidediv(divname) {
        identity=document.getElementById(divname);
        identity.className='hidediv';
        }
*/
//Function to show and hide div
var IE = document.all?true:false;
document.onmousemove=mousemove;
var tempX = 0;
var tempY = 0;
function mousemove(e) {
    if(!IE) {
            tempX = e.pageX;
            tempY = e.pageY;    
        }
    
    return true;
}
function getMouseXY(e) {
   tempX = event.clientX + document.documentElement.scrollLeft;
   tempY = event.clientY + document.documentElement.scrollTop;
   return true;
}
function funcshowdiv(divname, moveYN)
{    
if(IE) {getMouseXY();}
//alert('x: ' + tempX + ' y: ' + tempY);
if (tempX < 0){tempX = 0;}
if (tempY < 0){tempY = 0;} 
tempX = tempX - 7;
tempY = tempY - 45;
    if(IE){
        var obj;
        obj = eval('document.all.' + divname)
        obj.style.display= ''; 
        if (moveYN)
        {
            obj.style.top = tempY + 'px';
            obj.style.left = tempX + 'px';
        }
    } else {
        if(document.getElementById(divname).style.display != ''){ 
        document.getElementById(divname).style.display= ''; 
        if (moveYN) {
            document.getElementById(divname).style.left= tempX + 'px';
            document.getElementById(divname).style.top= tempY + 'px';
        }
    }
    }   
}
   
    
function funchidediv(divname, moveYN)
{
    if(document.layers)
    { // browser="NN4"; 
    document.layers[divname].display= 'none'; 
    } 
    if(document.all){ // browser="IE"; 
    var obj;
    obj = eval('document.all.' + divname)
    obj.style.display= 'none'; 
    
    } 
    if(!document.all && document.getElementById){ // browser="NN6+ or IE5+ if you're willing to dump the !document.all stuff"; 
    document.getElementById(divname).style.display= 'none'; 
    }   
   
}
 
function ShowTab(TabID, iTotalTabs, iStart) 
{
    if(document.layers)      //NN4+
    {
        
        for(var x=iStart; x<=iTotalTabs+iStart-1; x++)
        {
            var TabName = "Tab" + x;
            document.layers[TabName].visibility = "hide";
        }
        var TabName = "Tab" + TabID;
        document.layers[TabName].visibility = "show";
    }
    else if(document.getElementById)      //gecko(NN6) + IE 5+
    {        
        
        for(var x=iStart; x<=iTotalTabs+iStart-1; x++)
        {            
            var TabName = "Tab" + x;
            var obj = document.getElementById(TabName);
            obj.style.display = "none";
        }        
            
            var TabName = "Tab" + TabID;
            var obj = document.getElementById(TabName);
            obj.style.display = "block";
        
    }
    else if(document.all)    // IE 4
    {    
        for(var x=iStart; x<=iTotalTabs+iStart-1; x++)
        {
            var TabName = "Tab" + x;
            document.all[TabName].style.display = "none";
        }
        var TabName = "Tab" + TabID;
        document.all[TabName].display = "block";
    }
   
}
 
function ShowDefaultTab(strDefault)
{
//if it exists show the default fund divs
if (document.getElementById("fundSnapShot1"))
    {
         var obj = document.getElementById("fundSnapShot1");                                                 
         obj.style.display = "";
    }
if (document.getElementById("fundYtdRtn1"))
    {
         var obj = document.getElementById("fundYtdRtn1");                                                 
         obj.style.display = "";
    }
if (document.getElementById("fundperformance1"))
    {
         var obj = document.getElementById("fundperformance1");                                                 
         obj.style.display = "";
    }
if (document.getElementById("CalYearRtn1"))
    {
         var obj = document.getElementById("CalYearRtn1");                                                 
         obj.style.display = "";
    }
if (document.getElementById("QtrDistrib1"))
    {
         var obj = document.getElementById("QtrDistrib1");                                                 
         obj.style.display = "";
    }
if (document.getElementById("AnnDistrib1"))
    {
         var obj = document.getElementById("AnnDistrib1");                                                 
         obj.style.display = "";
    }


//end
var DDDivName = "";
    if (document.getElementById("dd_menu1"))
    {
    var obj = document.getElementById("dd_menu1");
    DDDivName = obj.options[obj.selectedIndex].value;
    }
       
    //do until it's null or not an object
    
    if (strDefault != '')
    {
        
        if(document.layers)      //NN4+
        { //alert("NN");
            
            for(var x=1; x<=10; x++)
            {
                if (typeof(document.layers[TabName]) == "object")
                {
                var TabName = DDDivName + "Tab" + x;
                document.layers[TabName].visibility = "hide";
                }
                else
                {
                    x = 100;
                }
            }
            var TabName = DDDivName + "Tab" + strDefault;
            document.layers[TabName].visibility = "show";
        }        
        else if(document.getElementById)      //gecko(NN6) + IE 5+
        {
            //alert("IE 5");
            for(var x=1; x<=9; x++)
            {           
                var TabName = DDDivName + "Tab" + x;
                
                if (document.getElementById(TabName))
                {                    
                    var obj = document.getElementById(TabName);
                    obj.style.display = "none";            
                }
                else                
                {                
                        x = 100;
                }                            
             }   
            var TabName = DDDivName + "Tab" + strDefault;
            
            var obj = document.getElementById(TabName);
            obj.style.display = "block";
        }
        else if(document.all)    // IE 4
        { 
            
            for(var x=1; x<=10; x++)
            {
                var TabName = DDDivName + "Tab" + x;
            
                if (typeof(document.all[TabName]) == "object")
                {
                document.all[TabName].style.display = "none";
                }
                else
                {
                    x = 100;
                    }
            }
            
            var TabName = DDDivName + "Tab" + strDefault;
            
            document.all[TabName].display = "block";
        }    
    }   
}
function checkTab(obj, tabClass)
{
    
        if (obj.style.display != "none")
        {     //if this was the previously selected class then find out what tab they were on
            for (x=1;x<10;x++)
            {
                var TabName = tabClass + "Tab" + x;
                if (document.getElementById(TabName))
                {
                    var obj = document.getElementById(TabName);
                    if (obj.style.display == "block")
                    {
                    return x;
                    }
                }
                else
                {
                    x = 100;
                    }
            }
        }
    return 0;
}
function changeTab(TabName)
{
if (document.getElementById("dd_menu1"))
{
var obj = document.getElementById("dd_menu1");
TabName = obj.options[obj.selectedIndex].value;
}
var holdTab = 0;
if(document.layers)      //NN4+
    {
        
       
    }
    else if(document.getElementById)      //gecko(NN6) + IE 5+
    {       
    
           //Hide drop down div's
           for (i=1;i<10;i++)
           {
               var tab = "divDropDown" + i;
               
               if (document.getElementById(tab))
               {    
                   var obj = document.getElementById(tab);                             
                if (holdTab == 0) holdTab = checkTab(obj, tab);             
                obj.style.display = "none";
               }
               else
               {
               i = 100;
               }               
           }       
        
        //Show selected drop down div
        if (document.getElementById(TabName))
        {
        var obj = document.getElementById(TabName);
        obj.style.display = "block";        
        }        
        
        
        //hide all tabs for this selected drop down element
        for (i=1;i<10;i++)
        {
        var TabName2 = TabName + "Tab" + i; 
            if (document.getElementById(TabName2))
            {
            var obj = document.getElementById(TabName2);
            obj.style.display = "none";
            }
            else
            {
            i = 100;
            }       
        
        }        
        
        //Show the right tab
        if (holdTab < 1) holdTab = 1;
        var TabName2 = TabName + "Tab" + holdTab;
    if (document.getElementById(TabName2))
        {
        var obj = document.getElementById(TabName2);
        obj.style.display = "block";
        }
        
        
    }
    else if(document.all)    // IE 4
    {    
        
    }
   
}
 
function changeTab2(TabName, tabDDName, ddItem)
{ 
    
    if (document.getElementById(tabDDName))
    {
        var obj = document.getElementById(tabDDName);
        TabName = obj.options[obj.selectedIndex].value;
    }
    var holdTab = 0;
    if(document.layers)      //NN4+
    {
        
       
    }
    else if(document.getElementById)      //gecko(NN6) + IE 5+
    {       
    
           //Hide drop down div's
           for (i=1;i<10;i++)
           {
               var tab = "new_divDropDown" + i;
               
               if (document.getElementById(tab))
               {    
                    var obj = document.getElementById(tab);                             
                    if (holdTab == 0) holdTab = checkTab(obj, tab);             
                    obj.style.display = "none";
               }
               else
               {
                   i = 100;
               }               
           }       
        
        //Show selected drop down div
        if (document.getElementById(TabName))
        {
            var obj = document.getElementById(TabName);
            obj.style.display = "block"; 
            if (document.getElementById(tabDDName))
            {
            var obj = document.getElementById(tabDDName);
            obj.selectedIndex = ddItem;
            }       
        }        
        
        
        //hide all tabs for this selected drop down element
        for (i=1;i<10;i++)
        {
            var TabName2 = TabName + "Tab" + i; 
            if (document.getElementById(TabName2))
            {
                var obj = document.getElementById(TabName2);
                obj.style.display = "none";
            }
            else
            {
                i = 100;
            }       
        
        }        
        
        //Show the right tab
        if (holdTab < 1) holdTab = 1;
        var TabName2 = TabName + "Tab" + holdTab;
        if (document.getElementById(TabName2))
        {
            var obj = document.getElementById(TabName2);
            obj.style.display = "block";
        }
        
        window.focus();
        
    }
    else if(document.all)    // IE 4
    {    
        
    }
   
}
function changeSnapShot(TabName)
{ 
 
    
    if(document.layers)      //NN4+
    {  
    }
    else if(document.getElementById)      //gecko(NN6) + IE 5+
    {      //Hide all
        for (i=1;i<10;i++)
        {
            var tab = "fundSnapShot" + i;
            var divYtdRtn = "fundYtdRtn" + i;
            var divfundperformance = "fundperformance" + i;
            var divCalYearRtn = "CalYearRtn" + i;
            var divQtrDistrib = "QtrDistrib" + i;
            var divAnnDistrib = "AnnDistrib" + i;
            if (document.getElementById(tab))
            {
                var obj = document.getElementById(tab);                                                 
                obj.style.display = "none";
            }
            if (document.getElementById(divYtdRtn))
            {            
                var obj = document.getElementById(divYtdRtn);                                                 
                obj.style.display = "none";
            }
            if (document.getElementById(divfundperformance))
            {                    
                var obj = document.getElementById(divfundperformance);                                                 
                obj.style.display = "none";
            }
            if (document.getElementById(divCalYearRtn))
            {
                    var obj = document.getElementById(divCalYearRtn);                                                 
                    obj.style.display = "none";
            }
            if (document.getElementById(divQtrDistrib))
            {
                    var obj = document.getElementById(divQtrDistrib);                                                 
                    obj.style.display = "none";
            }
            if (document.getElementById(divAnnDistrib))
            {
                    var obj = document.getElementById(divAnnDistrib);                                                 
                    obj.style.display = "none";
            }


            if (i > 5)
            {
                i = 100;
            }
        }       
        
        //Show selected 
        var tab = "fundSnapShot" + TabName;
        var divYtdRtn = "fundYtdRtn" + TabName;
        var divfundperformance = "fundperformance" + TabName;
        var divCalYearRtn = "CalYearRtn" + TabName;
        var divQtrDistrib = "QtrDistrib" + TabName;
        var divAnnDistrib = "AnnDistrib" + TabName;


        if (document.getElementById(tab))
        {        
            var obj = document.getElementById(tab);
            obj.style.display = "block";                    
        } 
        if (document.getElementById(divYtdRtn))
        {        
            var obj = document.getElementById(divYtdRtn);
            obj.style.display = "block";                    
        }
        if (document.getElementById(divfundperformance))
        {        
            var obj = document.getElementById(divfundperformance);
            obj.style.display = "block";                    
        }  
        if (document.getElementById(divCalYearRtn))
        {        
            var obj = document.getElementById(divCalYearRtn);
            obj.style.display = "block";                    
        } 
        if (document.getElementById(divQtrDistrib))
        {        
            var obj = document.getElementById(divQtrDistrib);
            obj.style.display = "block";                    
        }
        if (document.getElementById(divAnnDistrib))
        {        
            var obj = document.getElementById(divAnnDistrib);
            obj.style.display = "block";                    
        }           
        window.focus();        
    }
    else if(document.all)    // IE 4
    {            
    }   
}