﻿<!-- 
	function fixform() {
	    if (opener){
	        if (opener.document){
	            if(opener.document.getElementById("aspnetForm")){
		            if (opener.document.getElementById("aspnetForm").target != "_blank") return;
            		
		            opener.document.getElementById("aspnetForm").target = "";
		            opener.document.getElementById("aspnetForm").action = opener.location.href;
		            }
		        }
		    }
		}

function popUp(strURL,strType,strHeight,strWidth) {
var strOptions="";
if (strType=="elastic") strOptions="scrollbars,resizable,height="+strHeight+",width="+strWidth;
window.open(strURL, 'newWin', strOptions);
}

//-->