<!--
function OpenVotePopup (poll, vDiv) {
 var sWidth = document.getElementById(vDiv).offsetWidth + 20;
 var sHeight = document.getElementById(vDiv).offsetHeight + 20;
 var sOptions = "toolbar=no,status=no,resizable=yes,dependent=yes,width=" + sWidth + ",height=" + sHeight + ",left=50,top=50";
 var url = "voteresult.php?pollid=" + poll + "&div=" + vDiv + "&mode=0";
 var pWindow = this.window;
 var oWindow = window.open(url, "Vote", sOptions);
 oWindow.upW = pWindow;
}

function OpenImgPopup (url, width, height) {
 var sOptions = "toolbar=no,status=no,resizable=yes,dependent=yes,width=" + width +
  ",height=" + height + ",left=50,top=50";
 var oWindow = window.open(url, "Image", sOptions);
}
//-->
