//===================================================================================================
function DisplayLoginForm()
{
	document.write("<form method=\"post\" action=\"login.php\" name=\"LoginForm\">");
	document.write("<div class=\"login_form\" align=\"center\">Pour déposer/modifier votre CV :<br>");
	document.write("<font class=\"orange\">Pseudo</font><br>");
	document.write("<input type=\"text\" name=\"login\" style=\"width:110px;\"><br>");
	document.write("<font class=\"orange\">Mot de passe</font><br>");
	document.write("<input type=\"password\" name=\"password\" style=\"width:110px;\"></div>");
	document.write("<div class=\"login_form\" align=\"center\"><a href=\"password.html\">(Mot de passe oublié)</a></div>");
	document.write("<input type=\"image\" src=\"images/ok_login.gif\" style=\"border-width: 0px\">");
	
	document.write("</form>");
	
	document.write("<a href=\"inscription-candidat.html\" title=\"Inscription Candidat : Déposez votre CV sur JOBRESTO.com\"><img src=\"images/inscription.gif\" border=0 alt=\"Inscription Candidat : Déposez votre CV sur JOBRESTO.com\"></a><br>");
}
//===================================================================================================
