/* Scripts for Montecito Magazine */


/* if loaded in a frame, make it the parent document */

if (top.location != self.location) {
   top.location = self.location;
}


/* maximize the size of the window */

var agt = navigator.userAgent.toLowerCase();

if (document.getElementById && !(agt.indexOf('mobile')!=-1)) {
	window.self.moveTo(screen.availLeft,screen.availTop);
	window.self.resizeTo(screen.availWidth,screen.availHeight);
}
