function _body_onload()
{
	if (typeof focus_form != 'undefined' && typeof focus_field != 'undefined') {
		with (document.forms[focus_form][focus_field]) {
			select();
			focus();
		}
	}
	
	if (typeof body_onload == 'function') {
		return body_onload();
	}
}

function popup(anchor, width, height)
{
	window.open(anchor.href, null, 'width=' + width + ',height=' + height);
	return false;
}

function category_quick_jump(categories)
{
	if (categories.value != '') {
		document.location.href = '/wedding-category.php/' + categories.value;
	}
}