// JavaScript Document

function popup(url, width, height)
{
	newwindow=window.open(url,'bridesonabudget','width='+(width + 32)+',height='+(height + 32)+',toolbar=no,location=no,status=no,resizable=yes,scrollbars=no');
	if (window.focus){ newwindow.focus() }
	return false;
}