// JavaScript Document
var win = null; 

function abreWeb(mypage){ 
w=700; h=500; l=50;t=10;
settings ='height='+h+',width='+w+',top='+t+',left='+l+',scrollbars=no,resizable=no,fullscreen=yes' 
  win = window.open(mypage,'INMOALTORREAL',settings); 
}

function abreBuscador(mypage){ 
window.location=mypage; 
}

function abreMapa(mypage){ 
w=700; h=500; l=50;t=10;
settings ='height='+h+',width='+w+',top='+t+',left='+l+',scrollbars=no,resizable=yes,fullscreen=no' 
  win = window.open(mypage,'INMOALTORREALMAPA',settings); 
}
function abreResultados(mypage){ 
w=screen.availWidth;
h=screen.availHeight;
l=0;t=0;
//w=700; h=500; 
//l=50;t=10;
settings ='height='+h+',width='+w+',top='+t+',left='+l+',scrollbars=yes,resizable=yes,fullscreen=no' 
  win = window.open(mypage,'INMOALTORREALINMUEBLES',settings); 
}
function abreImg(mypage){ 
w=screen.availWidth;
h=screen.availHeight;
l=0;t=0;
//w=700; h=500; 
//l=100;t=50;
settings ='height='+h+',width='+w+',top='+t+',left='+l+',scrollbars=yes,resizable=yes,fullscreen=no' 
  win = window.open(mypage,'INMOALTORREALIMG',settings); 
}

function maximizaWin(){
	top.window.moveTo(0,0);
	if (document.all) {
	 top.window.resizeTo(screen.availWidth,screen.availHeight);
	}else{ 
		 if (document.layers||document.getElementById) {
 			 if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){
				 top.window.outerHeight = screen.availHeight;
				 top.window.outerWidth = screen.availWidth;
    		 }
		 }
		 return true;
	}
}
function colocaWin(){
	top.window.moveTo(50,10);
	top.window.resizeTo(700,500);	
}

