// JavaScript Document
function popUpAWindow(url, name, width, height)
{
	var evalThis = 'winObj = window.open("' + url + '", "' + name + '", "width=' + width + ', height=' + height + ', left=0, top=0, resizable=no, status=0, toolbar=0, scrollbars=0, modal=1, statusbar=0")';
	eval(evalThis);

	if (!winObj) {
		alert('popup blocker detected');
	} else {
		winObj.focus();
	}
}	

