function bgWh(item) {
	bgChange(item, '#ffffff');
}

function bgLb(item) {
	bgChange(item, '#e6ecf6');
}
function bgLr(item) {
	bgChange(item, '#ffdddd');
}

function bgChange(item, color) {
	if (!document.getElementById) return;
	item.style.backgroundColor = color;
}

function openCompany(pathCompany,opID){
	var win, screenWidth, screenHeight;
	var sW_1,sH_1,sW_2,sH_2;
	screenWidth = window.screen.width;
	screenHeight = window.screen.height;
	sW_1 = screenWidth/2-392;
	//win = window.open (pathCompany,"eurolinie","dependent=yes,toolbar=yes,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=770,height=463,left="+sW_1+",top=0"); 
	if(opID == 'HRS'){
		win = window.open ("","","dependent=yes,toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,left=0,top=0"); 
		win.outerWidth = screenWidth;
		win.outerHeight = screenHeight;
		win.resizeTo(500,screenHeight-25);
		win.location.href = pathCompany;
	}
	else{
		win = window.open ("","","dependent=yes,toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,left=0,top=0"); 
		win.outerWidth = screenWidth;
		win.outerHeight = screenHeight;
		//win.resizeTo(screenWidth,screenHeight-25);
		win.location.href = pathCompany;
	}	
	
	win.focus();
}
function openCC(){
	var win, screenWidth, screenHeight;
	var sW_1,sH_1,sW_2,sH_2;
	screenWidth = window.screen.width;
	screenHeight = window.screen.height;
	sW_1 = screenWidth/2 - 400; //175
	sH_1 = 0; //60	
	win = window.open ("cc.aspx","promo","dependent=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=352,height=482,left="+sW_1+",top="+sH_1+"");
	win.focus();
}

function changeImage(imgID, imgPath){
	var path = "images/campaign/";
	eval("document."+imgID).src=path+imgPath;
}	
			
		
