// JavaScript Document

 var imglist = new Array(
 "../images/common/header/1.jpg",
 "../images/common/header/2.jpg",
 "../images/common/header/3.jpg",
 "../images/common/header/4.jpg",
 "../images/common/header/5.jpg"
 );
 var selectnum = Math.floor((Math.random() * 10)) % imglist.length;
 var output = '<style type="text/css">td.header {background-image: url("' + imglist[selectnum] + '"); }</style>';
 document.write(output);


function smallwinopen(openurl,windowname,height,width)
{
	window.open(openurl,windowname,"width="+width+",height="+height+",status=no,scrollbars=yes,directories=no,menubar=no,resizable=yes,toolbar=no");
}

