var profileWinID ;
function pWinOpen( hName )
{
	wVal = 420 ;
	hVal = 480 ;
	wName = "Profile" ;
	defDir = "/intro" ;
	jmpPG = defDir + "/profile.php" ;
	
	keycode = "" ;
	keycode = usrProfileList[hName] ;
	//alert( keycode ) ;
	
	if ( keycode != undefined ) {
		jmpURL = jmpPG + "?hn=" + keycode ;
	} else {
		jmpURL = jmpPG ;
	}
	baseParam = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes" ;
	winParam = baseParam+",width="+wVal+",height="+hVal ;
	profileWinID = window.open ( jmpURL, wName, winParam );
	profileWinID.focus() ;
}
