
<!--
	function openpopup(){
	var argv = openpopup.arguments;
	winpops=window.open("./PostData/PostComment.aspx?ParentID=" + argv[0] + "&ImageID=" + argv[1],"Display","width=450,height=400,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no")
	}
	
    function DeleteCommentsPopup(){
	var argv = DeleteCommentsPopup.arguments;
	winpops=window.open("./PostData/DeleteComment.aspx?ParentID=" + argv[0] + "&ImageID=" + argv[1],"Display","width=450,height=400,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no")
	}
	
	function showhide_Old(divName) {
    thisDiv = document.getElementById(divName);
    if (thisDiv) {
		if (document.all) {
			if (thisDiv.style.display == "block") {
			    thisDiv.style.display = "none";
			 }
			 else {
			    thisDiv.style.display = "block";
			}
		}
		if (document.layers) {
			if (thisDiv.style.display == "block") {
			    thisDiv.style.display = "none";
			 }
			 else {
			    thisDiv.style.display = "block";
			}
		}
    }
    else {
        alert("Error: Could not locate div with id: " + divName);
    }
}
function showhide(divName) {
    thisDiv = document.getElementById(divName);
    if (thisDiv) {
        if (thisDiv.style.display == "block") {
            thisDiv.style.display = "none";
        }
        else {
            thisDiv.style.display = "block";
        }
    }
    else {
        alert("Error: Could not locate div with id: " + divName);
    }
}
-->