function openNewWin(id, flr) {

		var options = 'toolbar=0,location=0,menubar=0,directories=0,scrollbars=0,resizable=1';
		options += ',width=' + screen.availWidth + ',height=' + screen.availHeight;
		options += ',screenX=0,screenY=0,top=0,left=0';
		var win = window.open("../../../houseplanshow.php?id=" + id + "&flr=" + flr, '', options);
		win.focus();
		win.moveTo(0, 0);
		win.resizeTo(screen.availWidth, screen.availHeight);
}

function openNewWin2(id, flr) {
		var newWin = window.open("../../../houseplanshow.php?id=" + id + "&flr=" + flr,"newwindow", "toolbar=0,location=0,menubar=0,directories=0,scrollbars=0,resizable=1,height=570,width=920");
	    var laius = ((screen.width/2)-(800/2))
		var korgus = screen.height/8
	    newWin.moveTo(laius,korgus);
}

