// JavaScript Document
<!--
var aw = screen.availWidth;
                       var ah = screen.availHeight;
                       var vWidth = screen.width;
                       var vHeight = screen.height;
                       
                       var MAX_FULLSCREEN_W = 1920;
                       var MAX_FULLSCREEN_H = 1200;
                       
                       function chelseanicole (url, full) {
                               var opts = "scrollbars=0";
                               if(full == true){
                                       var width = Math.min(aw, MAX_FULLSCREEN_W);
                                       var height = Math.min(ah, MAX_FULLSCREEN_H);

                                       opts += ",width="+ width +",height="+ height;

                                       var left = (aw - width) / 2;
                                       var top = (ah - height) / 2;
                                       opts += ",top=" + top + ",left=" + left;
                                      
                               }
                               var ow = window.open(url,"ow",opts);
                               if(ow != null){
                                       ow.focus();
                               }
                       }

 

//-->