function popWindow(src,width,title,height){


	if(width==null) width=533;
	if(height==null) height=400;
	if(title==null) title="";
	else title= " - "+title;
	
	
	
	leftPos=(screen.width/2)-(width/2);
	topPos=(screen.height/2)-(height/2)*1.2;
	newWin=window.open('','name','left='+leftPos+',top='+topPos+',height='+height+',width='+width);
	
	var temp = newWin.document;
	temp.write('<html><head><title>Strathearn Heights Apartments'+title+'</title>');
	temp.write('</head><body style="margin:0; padding:0;">');
	temp.write('<a onclick="window.close()"><img border="0" src="'+src+'" alt="'+title+'"></a>');
	temp.write('</body></html>');
	temp.close();
	if (window.focus) {newWin.focus()}
	window.width=width;
}