function writeHomeBg() {
	var BG_ID = "container";
	bgs = new Array(5)
	bgs[0] = "/images/default/bg_01.jpg";
	bgs[1] = "/images/default/bg_02.jpg";
	bgs[2] = "/images/default/bg_03.jpg";
	bgs[3] = "/images/default/bg_04.jpg";
	bgs[4] = "/images/default/bg_05.jpg";
	random_num = Math.round(Math.random()*4);
	(BG_ID == "BODY" ? document.body : document.getElementById(BG_ID)).style.background = "url(" + bgs[random_num] + ")";
	(BG_ID == "BODY" ? document.body : document.getElementById(BG_ID)).style.backgroundPosition = "top left";
	(BG_ID == "BODY" ? document.body : document.getElementById(BG_ID)).style.backgroundRepeat = "no-repeat";
	(BG_ID == "BODY" ? document.body : document.getElementById(BG_ID)).style.backgroundColor = "#FFF";
}
	
window.onload=function(){
writeHomeBg();
}



   function PopupPic(sPicURL) { 
     window.open( "/templates/includes/popup.asp?"+sPicURL, "",  
     "resizable=1,HEIGHT=10,WIDTH=10, top=50, left=50"); 
   } 
