function WinOpen(url,winName)
{
	features = "toolbar=1,location=0,menubar=0,directories=0,resizable=1,status=1,scrollbars=1,width=550,height=200";
	newWin = window.open(url,winName,features);
	setTimeout('newWin.focus();',250);
}

function popWindow(url, name, width, height) {
	var x = (screen.width - width)/2;
	var y = (screen.height - height)/2;
    var opts = 'height=' + height + ',width=' + width + ",screenX=" + x + ",left=" + x + ",screenY=" + y + ",top=" + y + ',location=no,scrollbars=yes,menubar=no,resizable=no,status=no,toolbar=no';

    var newWindow = window.open(url, name, opts);
    newWindow.focus();

} 
