var d = document;

//Image Rollover and Rollout Code
function over(imgName, img_src) {
	d[imgName].src=img_src;
}

function out(imgName, img_src) {
	d[imgName].src=img_src;
}

//Preload Image code
function preLoadMyImages() {
	arg=preLoadMyImages.arguments;
	imgs=new Array();
	i=imgs.length
	for(i=0; i<arg.length; i++)
	if (arg[i]!=0) {
		imgs[i]=new Image;
		imgs[i].src=location.host + arg[i];
	}
}

//Code For Date In Headers
var todaysDate = new Date();

var dayNames = new Array ("Dimanche", "Lundi", "Mardi", "Mercredi", "Jeudi", "Vendredi", "Samedi");

var monthNames = new Array();
monthNames[0] = "Janvier";
monthNames[1] = "Février";
monthNames[2] = "Mars";
monthNames[3] = "Avril";
monthNames[4] = "Peut";
monthNames[5] = "Juin";
monthNames[6] = "Juillet";
monthNames[7] = "Août";
monthNames[8] = "Septembre";
monthNames[9] = "Octobre";
monthNames[10] = "Novembre";
monthNames[11] = "Décembre";

//Popup For Newsletter Page
function openNewsletter() {
        var Win = window.open("http://www.warnerbros.fr/web/all/fr/newsletter/enter.jsp?sid=EmailPlusFanClub&show=wbol","displayNewsletters",'width=800,height=500,resizable=0,scrollbars=yes,menubar=no,status=no');
		Win.focus();
}

//Popup For Tell A Friend Page
function openFriend() {
        var Win = window.open("/community/community_friend.html","displayFriend",'width=300,height=517,resizable=0,scrollbars=no,menubar=no,status=no');
		Win.focus();
}

//Popup For New Window
function openNewWindow(url) {
        var Win = window.open(url,"displayNewWindow");
		Win.focus();
}

//Popup For Window with attributes
function openWin(URL,ID,WIDTH,HEIGHT,RESIZE,SCROLL) {
        var Win = window.open(URL,ID,'width='+WIDTH+',height='+HEIGHT+',resizable='+RESIZE+',scrollbars='+SCROLL+',menubar=no,toolbar=no,location=no,directories=no,status=no');
		Win.focus();
}

