var isDOM = (document.getElementById ? true : false);
var isIE4 = ((document.all && !isDOM) ? true : false);
var isNS4 = (document.layers && window.innerWidth ? true : false);

function getElement(id) {
	if (isDOM) return document.getElementById(id);
	if (isIE4) return document.all[id];
	if (isNS4) return document.layers[id];
}

function order() {
	if (getElement('User').value.length > 0 && getElement('Password').value.length > 0) {
		var Parameters = 'toolbar=yes,menubar=no,scrollbars=no,status=yes,resizable=yes,directories=no,location=no,top=0,left=0,width=' + (screen.availWidth - 10) + ',height=' + (screen.availHeight - 90);
		var win = window.open('','ShopMarsolais',Parameters);
		document.forms[0].target = 'ShopMarsolais';
		win.focus();
	} else {
		alert('Veuillez entrer un nom d\'utilisateur et un mot de passe.\n\nPlease enter a username and password.');
	}
}

function envoyerCoordonnees() {
	f= document.forms[0];
	f.action = 'coordonnees.php';
	//f.onsubmit = function { return true; };
	f.submit();
}

function init() {
	//External Links
	if (document.getElementsByTagName) {
		var anchors = document.getElementsByTagName("a");
		for (var i=0; i<anchors.length; i++) {
			var anchor = anchors[i];
			if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external") {
				anchor.target = "_blank";
			}
		}
	}
}

window.onload = init;
