Hey,

If anyone could help me with these two things, I'd be very grateful.

Firstly, the arrow keys don't work for navigating around the text as the user inputs the text. Anyone know what's happening here?

Secondly, the line-breaks are getting lost. My variables are: textBox1 and textBox2 and I am passing them to a pop-up by the following script:

getURL
("javascript:window.open('dataSubmit.php?textArray 1="+textArray1+"&textArray2="+textArray2+"&active= "+active+"','popped','width=300,height=200,top='+( (screen.height/2)-100),left='+((screen.width/2)-150)+',toolbar=no,scrollbars=no,resizable=no,menub ar=no,status=no,directories=no,location=no'); void(0);");


I have tried: textArray1 = textBox1.split("\n"); also, but this isn't working. Can anyone suggest anything?

ps - putting "GET" at the end seems to stop the pop-up from working.