I'm struggling with this Javascript:
 width = screen.width * .75;
 height = screen.height * .75;
$(".colorbox").colorbox({
  width:"800px", 
  height:"600px", 
  iframe:true, 
  scrolling:false});
I am trying to put the values of width and height into the 800 and 600 spots, respectively.

