	var box_contact = new Array();
	box_contact['emailus'] = new Array();
	box_contact['emailus'][0] = 'box-296-el-email_us';
	box_contact['emailus'][1] = 'box-296-info-email_us';
	box_contact['emailus'][2] = 'box-296-element';
	box_contact['emailus'][3] = 'box-296-elementh';
	box_contact['livechat'] = new Array();
	box_contact['livechat'][0] = 'box-296-el-live_chat';
	box_contact['livechat'][1] = 'box-296-info-live_chat';
	box_contact['livechat'][2] = 'box-296-element';
	box_contact['livechat'][3] = 'box-296-elementh';
	box_contact['phone'] = new Array();
	box_contact['phone'][0] = 'box-296-el-phone';
	box_contact['phone'][1] = 'box-296-info-phone';
	box_contact['phone'][2] = 'box-296-element';
	box_contact['phone'][3] = 'box-296-elementh';
	box_contact['clicktocall'] = new Array();
	box_contact['clicktocall'][0] = 'box-296-el-click_to_call';
	box_contact['clicktocall'][1] = 'box-296-info-click_to_call';
	box_contact['clicktocall'][2] = 'box-296-element';
	box_contact['clicktocall'][3] = 'box-296-elementh';
	box_contact['address'] = new Array();
	box_contact['address'][0] = 'box-296-el-address';
	box_contact['address'][1] = 'box-296-info-address';
	box_contact['address'][2] = 'box-296-element';
	box_contact['address'][3] = 'box-296-elementh';
	box_contact['faq'] = new Array();
	box_contact['faq'][0] = 'box-296-el-faq';
	box_contact['faq'][1] = 'box-296-info-faq';
	box_contact['faq'][2] = 'box-296-elementl';
	box_contact['faq'][3] = 'box-296-elementlh';
	
	var box_payment = new Array();
	box_payment['payonline'] = new Array();
	box_payment['payonline'][0] = 'box-296-el-pay_online';
	box_payment['payonline'][1] = 'box-296-info-pay_online';
	box_payment['payonline'][2] = 'box-296-element';
	box_payment['payonline'][3] = 'box-296-elementh';
	box_payment['ereceipts'] = new Array();
	box_payment['ereceipts'][0] = 'box-296-el-e_receipts';
	box_payment['ereceipts'][1] = 'box-296-info-e_receipts';
	box_payment['ereceipts'][2] = 'box-296-element';
	box_payment['ereceipts'][3] = 'box-296-elementh';
	box_payment['eminders'] = new Array();
	box_payment['eminders'][0] = 'box-296-el-e_minders';
	box_payment['eminders'][1] = 'box-296-info-e_minders';
	box_payment['eminders'][2] = 'box-296-element';
	box_payment['eminders'][3] = 'box-296-elementh';
	box_payment['elerts'] = new Array();
	box_payment['elerts'][0] = 'box-296-el-e_lerts';
	box_payment['elerts'][1] = 'box-296-info-e_lerts';
	box_payment['elerts'][2] = 'box-296-element';
	box_payment['elerts'][3] = 'box-296-elementh';
	box_payment['easypay'] = new Array();
	box_payment['easypay'][0] = 'box-296-el-easy_pay';
	box_payment['easypay'][1] = 'box-296-info-easy_pay';
	box_payment['easypay'][2] = 'box-296-elementl';
	box_payment['easypay'][3] = 'box-296-elementlh';
	
	var box_subscription = new Array();
	box_subscription['newsubscription'] = new Array();
	box_subscription['newsubscription'][0] = 'box-el-new_subscription';
	box_subscription['newsubscription'][1] = 'box-info-new_subscription';
	box_subscription['newsubscription'][2] = 'box-element';
	box_subscription['newsubscription'][3] = 'box-elementh';
	box_subscription['accountinfo'] = new Array();
	box_subscription['accountinfo'][0] = 'box-el-account_info';
	box_subscription['accountinfo'][1] = 'box-info-account_info';
	box_subscription['accountinfo'][2] = 'box-element';
	box_subscription['accountinfo'][3] = 'box-elementh';
	box_subscription['deliveryproblem'] = new Array();
	box_subscription['deliveryproblem'][0] = 'box-el-delivery_problem';
	box_subscription['deliveryproblem'][1] = 'box-info-delivery_problem';
	box_subscription['deliveryproblem'][2] = 'box-element';
	box_subscription['deliveryproblem'][3] = 'box-elementh';
	box_subscription['vacationstop'] = new Array();
	box_subscription['vacationstop'][0] = 'box-el-vacation_stop';
	box_subscription['vacationstop'][1] = 'box-info-vacation_stop';
	box_subscription['vacationstop'][2] = 'box-element';
	box_subscription['vacationstop'][3] = 'box-elementh';
	box_subscription['restart'] = new Array();
	box_subscription['restart'][0] = 'box-el-restart';
	box_subscription['restart'][1] = 'box-info-restart';
	box_subscription['restart'][2] = 'box-element';
	box_subscription['restart'][3] = 'box-elementh';
	box_subscription['inquiry'] = new Array();
	box_subscription['inquiry'][0] = 'box-el-inquiry';
	box_subscription['inquiry'][1] = 'box-info-inquiry';
	box_subscription['inquiry'][2] = 'box-element';
	box_subscription['inquiry'][3] = 'box-elementh';
	box_subscription['payment'] = new Array();
	box_subscription['payment'][0] = 'box-el-payment';
	box_subscription['payment'][1] = 'box-info-payment';
	box_subscription['payment'][2] = 'box-elementl';
	box_subscription['payment'][3] = 'box-elementlh';
	
	function selectBox(box, el){
		if(box == 'contact'){ toggleBox(box_contact, el) }
		else if(box == 'payment'){ toggleBox(box_payment, el) }
		else if(box == 'subscription'){ toggleBox(box_subscription, el) }
	}
	function toggleBox(obj, el){
		for (var i in obj){
			var lyr_el = document.getElementById(obj[i][0]);
			var lyr_info = document.getElementById(obj[i][1]);
			if(i == el){
				lyr_el.className = obj[i][3];
				lyr_info.className = 'show';
			}else{
				lyr_el.className = obj[i][2];
				lyr_info.className = 'hide';
			}
		}
	}

	function login()
	{
		var frm = document.cust_service_login;
		var email = frm.login_cust_email.value;
		var pwd = frm.login_cust_password.value;
		frm.login_cust_password.value = "";
		frm.login_cust_password_hash.value = hex_md5(pwd);
		frm.submit();			
	}
