
function openImagePopup ( htmlUrl, imageURL, title, altText, caption, width, height )
{
    title = encodeURI(title);
    altText = encodeURI(altText);
    caption = encodeURI(caption);
    var imagePopupWindow = window.open( htmlUrl + "?img=" + imageURL + "?title=" + title + "?alt=" + altText + "?caption=" + caption, title, "width=" + width + ",height=" + height + ",location=no,menubar=no,status=no,toolbar=no,scrollbars=no" );
    if ( imagePopupWindow ) imagePopupWindow.focus();
}

function openFlashPopup ( htmlUrl, flashURL, title, width, height )
{
    var flashPopupWindow = window.open( htmlUrl + "?flash=" + flashURL + "?title=" + title + "?width=" + width + "?height=" + height, title, "width=" + width + ",height=" + height + ",location=no,menubar=no,status=no,toolbar=no,scrollbars=no" );
    if ( flashPopupWindow ) flashPopupWindow.focus();
}
