﻿function GetIt(partnerName)
{
	var code = partnerName;	
	//check WP & WF 
    var regExp = new RegExp(/^W(P|F).?\d{1,7}$/);			
    if (code.match(regExp)) {
        d = document;
        var divText = "";
        if (code.indexOf("WP") == 0) {
            divText = "Bienvenue dans l’espace réservé aux agences de voyages - Code: ";
        } else if (code.indexOf("WF") == 0) {
            divText = "Vous êtes connecté comme agence ";
        }
        var div ="<div style='"
        + ((navigator.appName == "Microsoft Internet Explorer") ? "width: 970px; " : "width: 968px; margin-top: 5px; ")
        + "background-color: red; text-align: center; font-size: 20px; color: white;"
        + "font-family:arial; font-style: normal; border: 1px black solid;'>"
        + divText + "<span style='font-weight: bold; text-decoration: underline;'>" + code + "</span></div>";
        d = document.write(div);
    }
}