// JavaScript Document


var popupw
function popwin(theURL, width, height) {

	if(popupw == null || popupw.closed) {
		popupw = window.open(theURL, "popup", "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height + ",top=25,left=25");
	} else {
		popupw.close()
		popupw = window.open(theURL, "popup", "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height + ",top=25,left=25");
	}
}

