var popUpWindow = (function(){
	return function(id, URLStr, left, top, width, height) {
		var wnd = window.open(URLStr, id, 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
		wnd.focus();
	};
}).call(null);
