I need the document width and height and store them as 2 seperate values. Is this possible, i have been searching in the reference but that didn't really help.
Sure, try this:
var docSizeX = document.size.width; var docSizeY = document.size.height;
Good luck!
thx it works