function openwindow(photo,rv,xpos,ypos,imagex,imagey)
{
	xpos = Math.round(xpos - ( imagex * .5 ));
	ypos = Math.round(ypos - ( imagey * .5 ));
	newwindow=window.open('/zoomimage.php?photo=' + photo + '&rv=' + rv + ' ', 'ZoomImage', 'width=' + imagex + ', height=' + imagey + ', status=no left=' + xpos + ', top=' + ypos + '\'');
	newwindow.moveTo(xpos,ypos)
	newwindow.focus();
}

function show_contact()
{
	if ($('#contact_outer').is(":hidden")) {
		$('#contact_outer').slideDown(800, fade_contact());
	} else {
		$('#contact_outer').slideUp(800, fade_contact());
	}
}

function fade_contact()
{
	if ($('#contact_inner').is(":hidden")) {
		$('#contact_inner').fadeIn(1200);
	} else {
		$('#contact_inner').fadeOut(400);
	}
}
