function   PopupWindow( theURL, winName, features)
{
	nwin = window.open( theURL, winName, features);
	if ( window.focus )
	    if( nwin != null ) 
		nwin.focus();

	//return nwin;
	return false;
}

function popWin ( href, title )
{
	//href = "openac/p1.php"
	//href = document.getElementById( val ).href;
	//alert ( href );
	aaa = PopupWindow( href, title ,'toolbar=no,status=yes,scrollbars=yes,resizable=yes,width=600,height=500,top=0,left=0' );
	return aaa;
}

function popWin2 ( href, title, w, h )
{
	//href = "openac/p1.php"
	//href = document.getElementById( val ).href;
	//alert ( href );
	p = "toolbar=no,status=no,scrollbars=no,resizable=no,width=" + w + ",height=" + h + ",top=0,left=0";
	aaa = PopupWindow( href, title , p );
	return aaa;
}

function popWin3( href, title, w, h )
{
	p = "toolbar=no,status=no,scrollbars=yes,resizable=no,width=" + w + ",height=" + h + ",top=0,left=0";
	aaa = PopupWindow( href, title , p );
	return aaa;
}

