function openWindow(url) {
	newWindow = window.open(url,"newWindow","toolbar=no,status=no,scrollbars=false,location=no,resizable=false,dependent,width=760,height=180,left=100,top=100");
}
var banner=[
"images/img1.jpg",
"images/img2.jpg",
"images/img3.jpg",
"images/img4.jpg",
"images/img5.jpg",
"images/img6.jpg",
"images/img7.jpg",
"images/img8.jpg",
];
var random=Math.floor((banner.length-1)*Math.random());
document.write("<style type=\"text/css\">");
document.write("#header {");
document.write(' background:#ffcc00 url("' + banner[random] + '") no-repeat 0px 0px;');
document.write(" }");
document.write("<\/style>");
document.onload=dynAnimation;
