var platform;
var browser;
var version;
var adjWidth;
var adjHeight;
var winSize,winOptions;
var rd;

version = parseInt(navigator.appVersion);

if(navigator.userAgent.indexOf('Win') == -1) {
        platform = 'Macintosh';
} else {
        platform = 'Windows';
}

if(navigator.appName.indexOf('Netscape') == -1) {
        browser = 'IE';
} else {
        browser = 'Netscape';
}

  if ((platform == 'Macintosh') && (browser == 'Netscape')) {
            adjWidth = 20;
            adjHeight = 35;
           winOptions = ',resizable=no';
      }
      if ((platform == 'Macintosh') && (browser == 'IE')) {
            adjWidth = 18;
            adjHeight = 33;
            winOptions = ',resizable=no';
      }
	if ((platform == 'Windows') && (browser == 'Netscape')) {
      	    adjWidth = 10;
            adjHeight = 12;
			winOptions = ',resizable=no';
      }
	
	if ( (platform == 'Windows') && (browser == 'IE') ) {
		adjWidth = 10;
        adjHeight = 33;
		winOptions = ',resizable=no';
	} 

	winWidth = screen.availWidth - adjWidth;
    winHeight = screen.availHeight - adjHeight;
    winSize = 'scrollbars=false,width=' + winWidth + ',height=' + winHeight;
	theX=0
	theY=0
	winPos=',screenX=' + theX+ ',screenY=' + theY+ ',left='+theX+',top='+theY

function FullScreen() {	
	
   if (rd && rd.open && !rd.closed) {
	    rd.focus(); 
   }else{
		rd = window.open('site.html', 'home', winSize + winOptions + winPos);
	    rd.focus();    
	}

}
function FullScreenEng() {
    
    rd = window.open('site.html', 'home', winSize + winOptions + winPos);
   // rd.moveTo(0,0);

}
function precos() {    
    popin = window.open('pop.html', 'pop', 'scrollbars=true,width=700,height=600,resizable=no');
    popin.focus(); 
}
function impressao() {    
    popin = window.open('contactos.pdf', 'pop', 'scrollbars=true,width=700,height=600,resizable=yes');
    popin.focus();   
}
function mapa() {
        popin = window.open('http://maps.google.pt/maps?f=q&hl=pt-PT&geocode=&q=quinta+dos+amigos&sll=37.080466,-8.051852&sspn=0.007121,0.010879&ie=UTF8&ll=37.082811,-8.050532&spn=0.027663,0.059824&z=15', 'pop', 'scrollbars=true,width=700,height=600,resizable=yes');
    popin.focus();   
}
// -->

