
	
	   function loadBanner(url, altW, altH, altLoc) {
		   try{
			  var statNode =  document.getElementById(altLoc?altLoc:'rCol');
			  try{ var newNode = document.createElement('IFRAME');}catch(e){}
			  statNode.appendChild(newNode);
			  
				try{newNode.setAttribute('src', url);}catch(e){}
				newNode.setAttribute('width', altW?altW:'200px;');
				newNode.setAttribute('height', altH?altH:'650px');
				try{newNode.setAttribute('id', 'ban');}catch(e){;}
				try{newNode.setAttribute('class', 'ban');}catch(e){;}
				try{newNode.setAttribute('className', 'ban');}catch(e){}
				try{newNode.setAttribute('scrolling', 'no');}catch(e){}
				try{newNode.setAttribute('frameborder', '0');}catch(e){}
				try{newNode.setAttribute('marginwidth', '0');}catch(e){}
				try{newNode.setAttribute('marginheight', '0');}catch(e){}
				}catch(e){}
				
				
				}	
	


