function openWindow( ventanaPadre, path_href, w, h) {
	var name = '';
	if (w == ''){
		w = 550;
	}
	if (h == ''){
		h = 400;
	}
	var winleft = (screen.width - w) / 2;
	var wintop = (screen.height - h) / 2;
	var attrib = 'width='+w+',height='+h+',left='+winleft+',top='+wintop+
		',resizable=no,scrollbars=no,status=0,location=0,directories=0,toolbar=0,menubar=0';

	var ventana = window.open(path_href, name , attrib);
	ventana.opener = ventanaPadre;
	ventana.focus();
}

function liveChat(){
	window.open('http://livechat.boldchat.com/aid/1519290110606600791/bc.chat?cwdid=1028224449176821450&url='+escape(document.location.href), 'Chat', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=640,height=480');
	this.newWindow.focus();
	this.newWindow.opener=window;
	return false;
}

function tour(){
	window.open('tour.html', 'tour', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=500,height=330');
	this.newWindow.focus();
	this.newWindow.opener=window;
	return false;
}

function image(img){
	switch(Number(img)){
		case 1: document.getElementById("link").innerHTML = '1 Bedroom / 1 Bath'; break;
		case 2: document.getElementById("link").innerHTML = '2 Bedroom / 2 Bath '; break;
		case 3: document.getElementById("link").innerHTML = '3 Bedroom / 2 Bath '; break;
		case 4: document.getElementById("link").innerHTML = ''; break;
	}
	document.getElementById("img").innerHTML = '<img src="images/floor_'+img+'.jpg" border="0" />';
}
