if(navigator.userAgent.indexOf('MSIE',0) != -1){var isIE = true;}
else {var isIE = false;}

function PopUp(URLStr,left,top,width,height) {
	if (typeof(wind) == "object"){
		if (isIE) {wind.close();}
		else {wind.close;}
	}
	wind = window.open(URLStr, '', 'scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

