function popUp(URL) {
    progresswin = window.open(URL, 'progresswin','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=550,height=280');
}

function resizeByID(theID,the_height){
	if(typeof document.getElementById(theID) != "undefined") {
		myNode = document.getElementById(theID);
		myNode.setAttribute("height", the_height);
		myNode.style.height = the_height+"px";
	}
}

function popUp2(URL,targetW,targetH) {
        popupwin = window.open(URL, 'popupwin','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width='+targetW+',height='+targetH);
}


