
function func_popup_zipcode(){

	this.Width  = "370";
	this.Height = "450";

	this.Left   = ( screen.availWidth - this.Width ) / 2;
	this.Top    = ( screen.availheight - this.Height ) / 2;

	/* ---- */

	this.open = function(){

		zipcode__0 = document.forms['main'].elements['user_zipcode[0]'].value;
		zipcode__1 = document.forms['main'].elements['user_zipcode[1]'].value;

		this.popup = window.open("/popup/zipcode.php?action=zipcode&zipcode[0]=" + zipcode__0 + "&zipcode[1]=" + zipcode__1 + "","popup_zipcode","status=yes,menubar=no,scrollbars=yes,toolbar=no,resizable=no,width=" + this.Width + ",height=" + this.Height + ",left=" + this.Left + ",top=" + this.Top + "");

		this.popup.focus();
	}

	/* ---- */

	this.set_zipcode = function(obj){

		document.forms['main'].elements['user_zipcode[0]'].value = obj.zip_zipcode.substr(0,3);
		document.forms['main'].elements['user_zipcode[1]'].value = obj.zip_zipcode.substr(3,4);

		document.forms['main'].elements['user_address_1'].value = obj.zip_address_1;
		document.forms['main'].elements['user_address_2'].value = obj.zip_address_2 + obj.zip_address_3;
		document.forms['main'].elements['user_address_3'].value = obj.zip_address_4;
		document.forms['main'].elements['user_address_4'].value = obj.zip_name;
		/*
		document.forms['main'].elements['user_address_5'].value = obj.zip_name;
		*/

	}

	/* ---- */

	this.close = function(){

		this.popup.close();

	}


	/* ---- */

}


window.onload = function(){

}

window.onunload = function(){

	if( document.popup_zipcode ){
		document.popup_zipcode.close();
	}

}


