function confirmDeleteAdvertiser(delUrl) {
  if (confirm('Are you sure you want to delete this advertiser?')) {
    document.location = delUrl;
  }
}

function confirmDeleteLead(delUrl) {
  if (confirm('Are you sure you want to delete this lead?')) {
    document.location = delUrl;
  }
}

function $(id){
		return document.getElementById(id);
}

function toggleDiv(Img,objId){
	if(Img.src.indexOf("ar.jpg") >= 0){
		Img.src = "images/ar2.jpg";
		$(objId).style.display="none";
	}else{
		Img.src = "images/ar.jpg";
		$(objId).style.display="block";
	}
}

function show(id){
	$(id).style.display="block";
}

