/* author: brian.daley&#64;uconn.edu */
/* Generated by AceHTML Freeware http://freeware.acehtml.com */
/* Creation date: 8/4/2003 */

function pop(url,popH,popW,name) {
	if(name == ""){name = 'MyWindow';}	//	Specify window name
  	w = screen.availWidth;
  	h = screen.availHeight;
	 //alert('Width: '+w+' - Height: '+h+' ');	// Test to see viewing area
	var leftPos = (w-popW)/2, topPos = (h-popH)/2;

	handle = window.open(url, name,'height='+popH+',width='+popW+',top='+topPos+',left='+leftPos+',scrollbars=no,toolbar=no,resizable=no');
	handle.focus();		//  Restores window if it is minimized
}

//	Options for window.open:
//	window.open(messageURL,windowNameMessage,[toolbar[=yes|no]|[=1|0],location[=yes|no]|[=1|0],directories[=yes|no]|[=1|0],status[=yes|no]|[=1|0],menubar[=yes|no]|[=1|0],scrollbars[=yes|no]|[=1|0],resizable[=yes|no]|[=1|0],width=pixels,height=pixels])