function ShowPopup(sPage)
{
	var intTop  = (screen.height-450)/2;
	var intLeft = (screen.width-550)/2;
	window.open('Default.aspx?Content=PageLoader&IsPopup=true&Page='+sPage, 'myPopup', 'height=450,width=550,top='+ intTop +',left='+ intLeft +',location=no,menubar=no,resizable=yes,scrollbars=yes,status=no');
}

function ShowPromotion(promotionCode)
{
	if(promotionCode != '')
	{
		var intTop  = (screen.height-450)/2;
		var intLeft = (screen.width-550)/2;
		window.open('Default.aspx?Content=PromotionCode&IsPopup=true&PromotionCode=' + promotionCode, 'myPopup', 'height=570,width=550,top='+ intTop +',left='+ intLeft +',location=no,menubar=no,resizable=yes,scrollbars=yes,status=no');
	}
}

function addFavorite()
{
	if((navigator.appName.indexOf("Microsoft",0)>=0) && (parseInt(navigator.appVersion)>=4))
	{
		window.external.AddFavorite("http://www.mesvacancesenphoto.com","Mes vacances en photo - Developpement photo et tirage numerique");
	}
	else
	{
		alert("Pressez CTRL + D pour ajouter Mes vacances en photo à vos favoris");
	}
}