function writeSWFtag (strSWFFile, intWidth, intHeight) {
    document.write('<object type="application/x-shockwave-flash" data="' + strSWFFile + '" ');
    document.write('width="' + intWidth + '" height="' + intHeight + '">');
    document.write('<param name="movie" value="' + strSWFFile + '"></object>');
}
function clickAnchorOnCR(anchor, e) {
    if (e.keyCode == 13)
    {
        if (e.preventDefault)
            e.preventDefault();
        e.returnValue = false;
        e.cancel = true;
        if (e.stopPropagation)
            e.stopPropagation();
        if (anchor.getAttribute('onclick') == null) {
            if (anchor.getAttribute('href')) document.location = anchor.getAttribute('href');
        }
        else anchor.onclick();
    }
}