function go_link_tp(page,width,height){
	if ((width < 1000) && (height < 1000)){
	window.open(page,"go_link", "scrollbars=no,width=" + width + ",height=" + height + ",resizable=no")
	}
}

function go_link(page,width,height){
	if ((width < 1000) && (height < 1000)){
	window.open(page,"go_link", "scrollbars=yes,width=" + width + ",height=" + height + ",resizable=no")
	}
}

function go_link2(page,width,height){
        if ((width < 1000) && (height < 1000)){
                window.open(page,"go_link", "scrollbars=yes,width=" + width + ",height=" + height + ",resizable=yes")
        }
}

function go_link3(page,width,height){
        if ((width < 1000) && (height < 1000)){
                window.open(page,"go_link", "toolbar=yes,scrollbars=yes,width=" + width + ",height=" + height + ",resizable=yes")
        }
}

function go_link_noscroll(page,width,height){
	if ((width < 1000) && (height < 1000)){
	window.open(page,"go_link", "scrollbars=no,width=" + width + ",height=" + height + ",resizable=no")
	}
}

function go_link_normal(page,width,height){
	if ((width < 1000) && (height < 1000)){
	window.open(page,"go_link", "menubar=yes,location=yes,toolbar=yes,scrollbars=yes,width=" + width + ",height=" + height + ",resizable=yes")
	}
}

function isValidZipCode(zip)
{
   var re = new RegExp(/^\d{5}([\-]\d{4})?$/);
   return (re.test(zip));
}