In your server side code thewn you must loop through the aray of quotes, Session("strCopy"), and write some client side script for each line:
Code:
Response.Write("var arrQuotes = new Array();\n");
(for var i = 1; i < Session("strCopy").length; i++)
{
Response.Write("arrQuotes[" + i + "] = \"" + Session("strCopy")[i] + "\";\n");
}
Then you can access the quotes as an array client side.
--
Joe