//******************************************************
//            Options Popup JS
//	
//  Pops up a window with more information on gorell
//	 window/door options that are availble
//
//	    Created 01/14/2K2 by Aaron Osborn
//   for use with the www.wwindow.com website
//     
//*******************************************************
 function options(n) 
{
   var x = 0, y = 0; // default values
   if (document.all)
   {
      x = window.screenTop + 101;
      y = window.screenLeft + 193;
   }
   else if (document.layers) 
   {
   x = window.screenX + 254;
   y = window.screenY + 197;
   }
   var  infowindow = window.open("","infowindow","toolbar=no,location=no,menubar=no,resizable=yes," +
                              "directories=no,scrollbars=yes,status=no,width=550,height=355," +
                              "top="+y+",screenY="+y+",left="+x+",screenX="+x+"")

   if (n==1) infowindow.location.href = '../../../companies/gorell/protector/index.html';
   else if(n==2) infowindow.location.href = '../../../companies/gorell/cm/index.html';
   else if(n==3) infowindow.location.href = '../../../companies/gorell/glass/cut/index.html';
   else if(n==4) infowindow.location.href = '../../../companies/gorell/glass/beveled/index.html';
   else if(n==5) infowindow.location.href = '../../../companies/gorell/glass/obscure/index.html';
   infowindow.focus();
   
 }
