// JavaScript Document

function OpenStation( station ) {
	regstation = new RegExp( "^[A-Z_0-9]{2,}$" );
	xTop = screen.width/2 - (550/2);
 	yTop = screen.height/2 - (600/2);
	if ( regstation.test( station ) ) {
		window.open( 'viewstation.php?station='+station , 'ComeToSki' , 'width=550,height=600,top='+yTop+',left='+xTop+',scrollbars=1,resizable=1,menubar=0,toolbar=0,status=0,location=0,directories=0' );	
	}
}

function OpenHebergement( heberg ) {
	regappart = new RegExp( "^[0-9]{1,}$" );	
	xTop = screen.width/2 - (550/2);
 	yTop = screen.height/2 - (600/2);
	if ( regappart.test( heberg ) ) {
		window.open( 'viewappart.php?heberg='+heberg , 'ComeToSki' , 'width=650,height=600,top='+yTop+',left='+xTop+',scrollbars=1,resizable=1,menubar=0,toolbar=0,status=0,location=0,directories=0' );	
	}
}

function Diaporama( params ) {
		window.open( 'diaporama.php?'+params , 'Diaporama' , 'width=400, height=430,toolbars=0,location=0,resizable=1,statusbar=0' );
}

function SwitchLang( lang ) {
	new Ajax.Request('index.php?switchlang='+lang, { asynchronous : false , onComplete: ReloadFunc } );
}

var ReloadFunc = function (t) {
	document.location = 'index.php';
}