i went thru my code like 30 times, doiing all sort of test,
and i can't fing the bobo.

here is my code

Code:
...
	strsql = "INSERT INTO tblPlayer (playerId,playerClubId,playerName,playerLastName,playerGroupID" _
	& ") VALUES('" & newId & "',1,'" & request("firstname") &"', '"& request("lastname") & "',7)"
	'set rs=conn.execute(strsql)
	populateArrayCGM
	%><Script language=javascript>
	var nname;
	var nn;
	nn=document.info.infoNum.value;
	nname=document.info.firstName.value + ', ' + document.info.lastName.value;
	eval("opener.document.settime.Player" + nn + ".value='" + nname + "';");
	eval("opener.document.settime.Id" + nn + ".value='<%=newId%>';");
	window.close();
	</Script>
	<%
End if 		
%>
there is more before the ..., but it is not important for now!

everything after:
nn=document.info.infoNum.value;

does not execute,WHY
What is the problemo!!!