//Open the Product Keywords popup page
//<param = keywords>the keywords of the highlight products</param>
//<param = url>localisation de la page popup</param>
//<param = pageID>the pageID of the article</param>
function openPopupProductEdition(url, keywords, pageID, articleID, SubCatID)
{
    var windowFeatures = "toolbar=no, location=no, status=no, menubar=no, scrollbars=no, resizable=yes, height=200, width=295, top=" + ((screen.height - 50)/2).toString()+",left="+((screen.width - 50)/2).toString();
    var urlRelative = url + "?keywords=" + keywords + "&pageID=" + pageID + "&ArticleId=" + articleID + "&SubCatID=" + SubCatID;
    var popCalWin = window.open(urlRelative,"",windowFeatures);
    popCalWin.focus();
}

function closePopupProductEdition()
{
    opener.location.reload(); 
    window.close(); 
}


