
function createWindow(picture)
{
	picwin = window.open("","picwin","toolbar=no,status=0,menubar=no,resizable=yes,scrollbars=no,width=307,heigh=307");
	picwin.document.open();
	picwin.document.writeln("<html><body leftmargin='0' rightmargin='0' bottommargin='0' topmargin='0' marginwidth='0' marginheight='0'><img onLoad=\"window.resizeBy(document.images['picture'].width - document.body.clientWidth,document.images['picture'].height - document.body.clientHeight);\" border=0 name='picture' src='/img/product/300/" + picture +"'/></body></html>");
	picwin.document.close();
	picwin.focus();
}

function ViewFoto(picture, name, info)
{
	document.ZoomPic.src = '/img/house/'+picture+'_b.jpg';
	document.ZoomPic.alt = name;
	document.getElementById('NameCeil').innerHTML = name;
	$('#dark').width($(document).width()).height($(document).height()).css('opacity',0.5).show('fast');
	$('#ZoomView').show('slow');
	$(document).css('overflow','hidden');
}

function CloseZoomPhoto(){
	$('#ZoomView').hide('slow');
	$('#dark').hide('fast');
	$(document).css('overflow','auto');
}

function PosDiv(){
	$('#ZoomView').css('left',($(window).width() - 400)/2).css('top',($(window).height() - document.ZoomPic.height+16)/2+$(window).scrollTop());
}

