/*
 * carr.js
 */

<!--

function viewDetail(url) {
	window.open(url,'detail_view','width=790,height=570,directories=no,toolbar=no,location=no,menubar=no,scrollbars=no,resizable=yes,status=no');
}

function viewMap(url) {
	window.open(url,'detail_view','width=600,height=450,directories=no,toolbar=no,location=no,menubar=no,scrollbars=no,resizable=yes,status=no');
}

function printIcon() {
	if (document.getElementById("print"))
	{
		printBlock = document.getElementById("print");
		printLink = printBlock.appendChild(document.createElement('a'));
		printLink.setAttribute("href", "javascript:window.print();");
		
		printSpan = printLink.appendChild(document.createElement('span'));
		
		if (document.getElementById("carr-fr")) {
			printSpan.innerHTML = "Imprimer";
		}
		else{
			printSpan.innerHTML = "Print";
		}
	}
}

function testFlash() {
	var version = deconcept.SWFObjectUtil.getPlayerVersion();
	if (document.getElementById('flashversion')) {
		if (version['major'] >= 8) {
			var mmntWindow;
			if (document.getElementById("carr-fr")) {
				document.getElementById('flashversion').innerHTML = "Flash Player version "+ version['major'] +"<br />JavaScript activé<br /><br />Une nouvelle fenêtre s'ouvrira pour lancer l'application. <a href=\"featured_search.php\" onclick=\"javaScript:mmntWindow=window.open('../../featured/mmnt/vagmmnt_fre.html','mmntWindow','width=790,height=565');mmntWindow.focus();void(0);return false;\" title=\"Featured Works\">version Flash</a>.";
				//window.open('../../featured/mmnt/vagmmnt_fre.html','mmntWindow','width=790,height=565');
			}
			else{
				document.getElementById('flashversion').innerHTML = "Flash Player version "+ version['major'] +"<br />Javascript enabled<br /><br />A new window will open to launch the application. <a href=\"featured_search.php\" onclick=\"javaScript:mmntWindow=window.open('../../featured/mmnt/vagmmnt.html','mmntWindow','width=790,height=565');mmntWindow.focus();void(0);return false;\" title=\"Featured Works\">Launch Flash version</a>.";
				//window.open('../../featured/mmnt/vagmmnt.html','mmntWindow','width=790,height=565');
			}
			if (mmntWindow) mmntWindow.focus();
		}
		else if ((version['major'] > 0) && (version['major'] <= 7)) {
			if (document.getElementById("carr-fr")) {
				document.getElementById('flashversion').innerHTML = "Flash Player version "+ version['major'] +"<br />JavaScript activé";
			}
			else{
				document.getElementById('flashversion').innerHTML = "Flash Player version "+ version['major'] +"<br />Javascript enabled";
			}
		}
		else {
			if (document.getElementById("carr-fr")) {
				document.getElementById('flashversion').innerHTML = "Aucun logiciel Flash Player détecté<br />JavaScript activé";
			}
			else{
				document.getElementById('flashversion').innerHTML = "No Flash player detected<br />Javascript enabled";
			}
		}
	}
}

window.onload = function () {
	if (document.getElementById) {
		printIcon();
		
		testFlash();
	}
}
//-->


