﻿var lastColor;
function ChangeColor(obj)
{
    lastColor = obj.style.backgroundColor;
    obj.style.backgroundColor = '#ffffdd';
    obj.style.border = "dashed 1px #9E0A0B";
}
function ResetColor(obj)
{
    obj.style.backgroundColor = lastColor;
    obj.style.border = "solid 1px #dddddd";
}

var adamnt = document.getElementById('ctl00_Contentplaceholder1_hdnAd').value;
//alert(adamnt);
var url = escape(location.href);
var content = "<iframe src='../../OtherPages/AddCompany.aspx?URL="+url+"' frameborder='0' height='530px' width='440px'></iframe>";			
document.write('<div id="DhtmlDiv" style="display:none;">'+content+'</div>');

var advertiseContent = "<iframe src='../../OtherPages/Advertise.aspx?URL="+url+"&adamnt="+adamnt+"' frameborder='0' height='530px' width='440px'></iframe>";			
document.write('<div id="advertiseDhtmlDiv" style="display:none;">'+advertiseContent+'</div>');


