var pWindow;
function popUp(page, pageName, w, h, scrollRsz)
{
	var sr = "yes";
	if (scrollRsz != null && scrollRsz == "no") {
		sr = "no"
	}
	features="width=" + w + ",height=" + h + ",scrollbars=" + sr + ",resizable=" + sr;
	pWindow = window.open(page, pageName, features);
	pWindow.focus(); 
}

function focusField(formName, fieldName)
{
	document.forms[formName].elements[fieldName].focus()
}

function redirectOpener(url) {
	window.opener.document.location = url;
	window.opener.focus();
}
function photoPopup(galleryFile){
window.open (galleryFile, "Gallery",
    "resizable=1,width=700,height=500, status=yes");
}
function popShippingUp(cfServer)
{
	var something =  window.open(cfServer + '/holiday/holiday_shipping.html', 'shipping', 'toolbar=no,location=no,directories=no,status=no,scrollbars=no,menubar=no,resizable=yes,width=520,height=430,top=10,left=10');
}