function PopUp(URL, Width, Height){
	var PopUpObj = "";
	if(PopUpObj.closed==false){
		PopUpObj.close();
	}
	PositionLeft = (screen.width-Width)/2;
	PositionTop = (screen.height-Height)/2;
	PopUpObj = window.open(URL, 'PopUp','left='+PositionLeft+',top='+PositionTop+',width='+Width+',height='+Height+',resizeable=no,location=no');		
	PopUpObj.focus();
}
function animateCar(){
	$('#AbarthCar > #Car').css('opacity', 0).animate({ left: 0, opacity: 1 }, 1000);	
}
function CloseAbarthLayer(){
	$('#AbarthLayer').remove();
	animateCar();
}
