// JavaScript Document

if (!BPE)
{
	var BPE = Base.extend	
	({
	 	constructor: function()
		{
			Event.observe(window, 'load', this.windowOnLoad.bindAsEventListener(this));	
		},
		
		windowOnLoad: function()
		{
			if (RedSquare.PopupBuilder)
				new RedSquare.PopupBuilder('photo', 'photo', 'width=580,height=625,left=c,top=c,scrollbars=yes,resizable=yes');
		
		}
	});

	new BPE();
}

