var sDIV; 
sDIV = '<table border="0" width="100%" cellspacing="0" cellpadding="0" background="images/Banner_bg.jpg" style="background-repeat:no-repeat; background-position:right 0%" >';
sDIV += '  <tr>';
sDIV += '    <td valign="top">';
sDIV += '      <table border="0" width="100%" cellspacing="0" cellpadding="0">';
sDIV += '        <tr>';
sDIV += '          <td><IMG SRC="images/Logo.jpg" width=260 height=125 alt="FEDAI Logo"></td>';
sDIV += '        </tr>';
sDIV += '        <tr>';
sDIV += '          <td><IMG SRC="images/Link0.jpg" width=193 height=30></td>';
sDIV += '        </tr>';
sDIV += '      </table>';
sDIV += '    </td>';
sDIV += '    <td width="100%" valign="top">';
sDIV += '      <table border="0" cellspacing="0" cellpadding="0">';
sDIV += '        <tr>';
sDIV += '          <td>';
sDIV += '			<IMG SRC="images/Banner1.jpg" width=319 height=107 alt="Foreign Exchange Dealers Association of India"></td>';
sDIV += '          <td><map name="FPMap0"><area href="feedback.asp" shape="rect" coords="61, 55, 114, 71"><area href="ContactUs.html" shape="rect" coords="125, 54, 190, 71"></map><IMG SRC="images/Banner2.jpg" width=201 height=107 alt="Foreign Exchange Dealers Association of India" usemap="#FPMap0" border="0"></td>';
sDIV += '        </tr>';
sDIV += '        <tr>';
sDIV += '          <td><IMG SRC="images/FEDAI.jpg" width=319 height=48 alt="Foreign Exchange Dealers Association of India"></td>';
sDIV += '          <td><IMG SRC="images/FEDAI_1.jpg" width=201 height=48 alt="Foreign Exchange Dealers Association of India"></td>';
sDIV += '        </tr>';
sDIV += '      </table>';
sDIV += '    </td>';
sDIV += '  </tr>';
sDIV += '</table>';


/*
var sDIV1;
sDIV1 = '<div style="position:absolute;left:0;top:155">'; 
sDIV1 += '<table border="0" cellspacing="0" cellpadding="0">';
sDIV1 += '        <tr>';
sDIV1 += '          <td width="100%"><map name="FPMap0">';
sDIV1 += '            <area href="AboutUs.html" shape="rect" coords="19, 4, 148, 24"></map><IMG SRC="images/Link1.jpg" width=193 height=28 alt="About Us" usemap="#FPMap0" border="0"></td>';
sDIV1 += '        </tr>';
sDIV1 += '        <tr>';
sDIV1 += '          <td width="100%"><map name="FPMap1">';
sDIV1 += '            <area href="RevaluationRates.html" shape="rect" coords="20, 6, 151, 23"></map><IMG SRC="images/Link2.jpg" width=193 height=29 alt="Revaluation Rates" usemap="#FPMap1" border="0"></td>';
sDIV1 += '        </tr>';
sDIV1 += '        <tr>';
sDIV1 += '          <td width="100%"><map name="FPMap2">';
sDIV1 += '            <area href="Circulars.html" shape="rect" coords="20, 6, 147, 23"></map><IMG SRC="images/Link3.jpg" width=193 height=29 alt="Circulars" border="0" usemap="#FPMap2"></td>';
sDIV1 += '        </tr>';
sDIV1 += '        <tr>';
sDIV1 += '          <td width="100%"><map name="FPMap3">';
sDIV1 += '            <area href="FEMA.html" shape="rect" coords="18, 6, 149, 24"></map><IMG SRC="images/Link4.jpg" width=193 height=29 alt="FEMA" border="0" usemap="#FPMap3"></td>';
sDIV1 += '        </tr>';
sDIV1 += '        <tr>';
sDIV1 += '          <td width="100%"><map name="FPMap4">';
sDIV1 += '            <area href="FAQs.html" shape="rect" coords="18, 6, 149, 24"></map><IMG SRC="images/Link5.jpg" width=193 height=29 alt="FAQs" border="0" usemap="#FPMap4"></td>';
sDIV1 += '        </tr>';
sDIV1 += '        <tr>';
sDIV1 += '          <td width="100%"><map name="FPMap5">';
sDIV1 += '            <area href="Careers.html" shape="rect" coords="19, 5, 149, 25"></map><IMG SRC="images/Link6.jpg" width=193 height=29 alt="Careers" border="0" usemap="#FPMap5"></td>';
sDIV1 += '        </tr>';
sDIV1 += '        <tr>';
sDIV1 += '          <td width="100%"><map name="FPMap6">';
sDIV1 += '            <area href="ContactUs.html" shape="rect" coords="19, 5, 148, 25"></map><IMG SRC="images/Link7.jpg" width=193 height=29 alt="Contact Us" border="0" usemap="#FPMap6"></td>';
sDIV1 += '        </tr>';
sDIV1 += '        <tr>';
sDIV1 += '          <td width="100%"><map name="FPMap7">';
sDIV1 += '            <area href="index.asp" shape="rect" coords="19, 5, 148, 25"></map><IMG SRC="images/Link8.jpg" width=193 height=29 alt="Home" border="0" usemap="#FPMap7"></td>';
sDIV1 += '        </tr>';
sDIV1 += '      </table>';
sDIV1 += '</div>';
*/


document.getElementById("idBanner").innerHTML = sDIV;
//document.getElementById("idBanner1").innerHTML = sDIV1;

function showHideDiv(sFrame, sImg)
{
	var objFrame, objImg;
	objFrame = document.getElementById(sFrame);
	objImg = document.getElementById(sImg);
	
	if (objFrame.style.display == "")
	{
		objImg.src = "Plus.gif";
		objFrame.style.display = "none"
	}
	else
	{
		objFrame.style.display = ""
		objImg.src = "Minus.gif";
	}
}
