function openPopup(url,name,features,imgLoc,imgH,imgW)
{
document.storage.theImage.value = imgLoc
document.storage.imgWidth.value= imgW
document.storage.imgHeight.value= imgH
var loc =url
var imageW = document.storage.imgWidth.value
var imageH = parseInt(document.storage.imgHeight.value)+50
var newFeatures = features + ',' + ' width=' + imageW + ',' + ' height=' + imageH
popupWin=window.open(loc,name,newFeatures)
}
var popupWin = null
function hidePopup()
{
if ( popupWin != null )
	{
	popupWin.close()
popupWin = null
	}
}
if ((navigator.appVersion.indexOf("MSIE") > 0)
  && (parseInt(navigator.appVersion) >= 4)) {
    var sText = "<U><SPAN STYLE='color:blue;cursor:hand;'";
    sText += "onclick='window.external.AddFavorite(location.href,";
    sText += "document.title);'>Add this page to your favorites</SPAN></U>";
    document.write(sText);
}
