// JavaScript Document

function popWindow(lang,page){
	switch(page){
		case 'contactus':
			window.open('/'+lang+'/contactus.html','ContactUs','width=425,height=450,top=20,left=20,scrollbars=yes');
		break;
		
		case 'privacy':
			window.open('/'+lang+'/information_privacy.html','InformationPrivacy','width=425,height=450,top=20,left=20,scrollbars=yes');
		break;
		
		case 'unsubscribe':
			window.open('/'+lang+'/unsubscribe.html','Unsubscribe','width=425,height=450,top=20,left=20,scrollbars=yes');
		break;
		
		case 'sitemap':
		var url = location.href;
		var pos = url.indexOf("/fr/");
		if((pos != -1) && (lang == "en"))
		{
		 var language = "fr"
		window.open('/'+language+'/sitemap.html','Sitemap','width=425,height=450,top=20,left=20,scrollbars=yes');
		}
		else
		{
		 window.open('/'+lang+'/sitemap.html','Sitemap','width=425,height=450,top=20,left=20,scrollbars=yes');
		}
		
		/*if((url == "http://www.publicstatic.com/fr/") && (lang == "en"))
		{
		    var language = "fr"
		    window.open('/'+language+'/sitemap.html','Sitemap','width=425,height=450,top=20,left=20,scrollbars=yes');
		}
		else
		{
			window.open('/'+lang+'/sitemap.html','Sitemap','width=425,height=450,top=20,left=20,scrollbars=yes');
		}*/
		break;
		
		case 'rules':
			window.open('/'+lang+'/officialrules.html','ContestRules','width=425,height=450,top=20,left=20,scrollbars=yes');
		break;
		
		default:
			return false;
	}
}

function popwindow(lang,page) {
	popWindow(lang, page);	
}

function contests_petro( lang ) {
	window.open('../contests/petro/'+lang,'PetroPromo','width=530,height=600,top=20,left=20,scrollbars=yes');
}

function contests_cards( lang, pin ) {
	window.open('../contests/cards/authpin.asp?lang='+lang+'&pin='+pin,'CardPromo','width=424,height=514,top=20,left=20,scrollbars=yes');
	//window.open('../contests/cards/'+lang+'/authpin.asp?pin='+pin,'CardPromo','width=424,height=514,top=20,left=20,scrollbars=yes');
}

function contests_cards_rules( lang ) {
	window.open('../contests/cards/'+lang+'/rules.asp?alone=1','CardPromoRules','width=424,height=514,top=20,left=20,scrollbars=yes');
}