function hirBox(pageName,width,heigth,scroll,x_dist){
	LeftPosition = (screen.width-width)/2+x_dist;
	TopPosition = (screen.height-heigth)/2;
	settings = 'height='+heigth+',width='+width+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable='+scroll
	newWindow = 'newWindow'+x_dist;
	win = window.open(pageName,newWindow,settings)
}

function transferview(typer) {


var gomb="'Ablak bezárása'";
var image = "pic/type"+typer+".jpg";


	p_width = 0;
	p_height = 0;


cond1="width="+(p_width+0)+"";
cond2="height="+(p_height+0)+"";

LeftPosition = (screen.width-p_width)/2;
TopPosition = (screen.height-p_height)/2;


 var s1 ="<TITLE>Napliget Lakópark - "+typer+". típusú lakás</TITLE>"
 var s2="<BODY onload='window.resizeTo(pic.width+40,pic.height+120);window.focus();' BGCOLOR='#ffffff' leftmargin='20' topmargin='20' marginwidth='20' marginheight='20'>"
 var s3="<CENTER><a href='javascript:window.close();'><IMG SRC='"+image+"' ID='pic' NAME='pic' BORDER=0 title="+gomb+"></a>"
 var s5 ="</FORM></CENTER></BODY>"

//alert(String(image).substring(image.length-8,image.length-4));

ImageWindow=window.open("",String(image).substring(image.length-8,image.length-4),"toolbar=no,scrollbars="+scroll+",menubar=no,"+cond1+","+cond2,'top='+TopPosition+',left='+LeftPosition);
 ImageWindow.document.write(s1+s2+s3+s5);
 ImageWindow.document.close();
 ImageWindow.focus();
}

