If the property (lval) happens to be a JavaScript keyword, you can quote it such as:
var params = {'for':"screen"};
This was needed as Opera reserves the keyword 'goto', and this would not work:
var params = {goto:"parent"};
where the solution is:
var params = {'goto':"parent"};
Page last modified 08:16, 9 Aug 2007 by Waldo