// JavaScript Document

function updateBannerCode(num) {
	var width;
	var height;
	
	switch (num){
	case "01": 
	width = "468";
	height = "60";
	break;
	case "02": 
	width = "392";
	height = "72";
	break;
	case "03": 
	width = "125";
	height = "125";
	break;
	case "04": 
	width = "120";
	height = "240";
	break;
	case "05": 
	width = "234";
	height = "60";
	break;
	case "06": 
	width = "120";
	height = "90";
	break;
	case "07": 
	width = "120";
	height = "60";
	break;
	}
	
	var code = "<a href='http://www.fallyrag.com'  target='_blank' ><img src='http://www.fallyrag.com/images/banners/banner"+num+".png' alt='fallyrag banner' width='"+width+"' height='"+height+"' /></a>";
	for (i=0;i<document.getElementsByName("banner_pic").length;i++){
		document.getElementsByName("banner_pic").item(i).style.border="1px solid white";
	}
	
  	document.getElementById("banner"+num).style.border = "1px solid red";
  	document.getElementById("banner_text").value=code;
}

function selectAll(){
	var text_val=document.getElementById("banner_text");
	text_val.focus();
	text_val.select();
}