<!---
function is_msie() {
	return (navigator.appName == "Microsoft Internet Explorer");
}

function Framing(){ 
	if (this.document == parent.document || parent.location.host != this.location.host) {
		var pathprefix = location.protocol + '//' + location.host + location.pathname.substring(0, location.pathname.lastIndexOf('/')+1);
		var doctitle = document.title;
		document.clear();
		document.open("text/html");
		document.writeln('<html>\n<head><title>'+doctitle+'</title></head>');
		document.writeln('<frameset  rows="25,*,30" cols="330,*" framespacing="0" frameborder="0">'+'<frame name="dat" src="http://www.auberge-blanche-neige.com/en/frames/dat.php" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" noresize>'+'<frame name="lang" src="http://www.auberge-blanche-neige.com/en/frames/lang.html" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" noresize>'+'<frameset  rows="400,*" framespacing="0" frameborder="0">'+'<frame name="pic" src="pic.html" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" noresize>'+'<frame name="x" src="http://www.auberge-blanche-neige.com/en/frames/x.html" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" noresize>'+'</frameset>'+'<frameset  rows="100,30,*" framespacing="0" frameborder="0">'+'<frame name="titel" src="http://www.auberge-blanche-neige.com/en/frames/titel.html" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" noresize>'+'<frame name="menu" src="http://www.auberge-blanche-neige.com/en/frames/menu.html" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" noresize>'+'<frame name="main" src="'+top.location.href+'" marginwidth="10" marginheight="10" scrolling="auto" frameborder="0" noresize>'+'</frameset>'+'<frame name="copy" src="http://www.auberge-blanche-neige.com/en/frames/copy.php" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" noresize>'+'<frame name="meta" src="http://www.auberge-blanche-neige.com/en/frames/meta.html" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" noresize>'+'</frameset></html>');
		document.close();
		window.setTimeout('parent.frames[6].location.href = '+'"'+parent.location.href+'";',1);
		return true;

	} 
	return false;
}

function msieFraming() {
	if (is_msie()) {
		if (Framing()) {

		}
	}
}

function netscFraming() {
if (!is_msie()) Framing();
}
msieFraming();
// --->