﻿function GetWomLinks(p) {
    url = __CONT__URL_FRONT + 'Pages/HTMLBuilder/WomLink.aspx?L=5&p=' + p + '&U=' + new Date().getTime();
    IncludeHTML(url, "WomLnkContent");
}


document.write("<div id='WomLnkMaster'>");
document.write("<div id='WomLnkContent'>Chargement...</div>");
document.write("<div style='text-align:right;padding-right:10px;font-size:10px;' class='WomLnkContent'><a href='#' onClick='javascript:GetWomLinks(1);return false;'>1</a>&nbsp;-&nbsp;");
document.write("<a href='#' onClick='javascript:GetWomLinks(2);return false;'>2</a>&nbsp;-&nbsp;");
document.write("<a href='#' onClick='javascript:GetWomLinks(3);return false;'>3</a>&nbsp;-&nbsp;");
document.write("<a href='#' onClick='javascript:GetWomLinks(4);return false;'>4</a></div>");
document.write("</div>");

GetWomLinks(parseInt(Math.random() * 10) % 4 + 1);



