// JavaScript Document
var strURL = top.window.document.URL;
var arrURL = strURL.split("/");
strURL = '';
for(var intCpt = 4; intCpt < arrURL.length; intCpt++)
{
	strURL += "../";
}
var strReferrer = new String(document.referrer);
document.write("<div style='position:absolute;left:1px;top:1px'><IMG SRC='"+strURL+"DomainInfoLogs.php?Referrer="+strReferrer+"' width='1px' height='1px'></IMG></div>");

function clrTxt(oElem, oEvent) {
if (
oElem
&& typeof oElem.value != "undefined"
&& oElem.defaultValue
&& oEvent
&& oEvent.type
) {

/*if (
oEvent.type == "focus"
&& oElem.value == "Nom d'usager"
) {
oElem.value = "";
}
else if (
oEvent.type == "focus"
&& oElem.value == "Mot de passe"
) {
	oElem.value = "";
	oElem.type = "Password";

}*/
if (oEvent.type == "focus")
{
	oElem.value = "";
}
}
}
