function validate_data(){
	var obj_res = document.demoform;

	if(isEmpty('txt_gname')){ alert('Please Fill in First Name'); setFocus("txt_gname") } <!-- 1 -->
	else{
		if(isEmpty('txt_glname')){ alert('Please Fill in Surname'); setFocus("txt_glname")} <!-- 2 -->
	    else{
			if(isEmpty('txta_address')){ alert('Please Fill in Shipping Address'); setFocus("txta_address")} <!-- 3 -->
			else{
				if(isEmpty('txt_email') || isAnEmailAddress('txt_email')){ alert('Please Fill in complete E-mail'); setFocus("txt_email")} <!-- 4 -->
		        else{
					if(isEmpty('txt_number')){ alert('Please Fill in Telephone/Fax number'); setFocus("txt_number")} <!-- 5 -->
					else{
						obj_res.submit();
		            }
	}}}}
}

function currency_format( val ) {
	var info = ( '' + val ).split( '.' )
	var result = val
	if ( info.length > 2 ) {
		alert( 'Too many periods: ' + val )
	} else {
		if ( info.length < 2 ) {
			info[ 1 ] = '00'
		}
		result = ''
		var before = info[ 0 ]
		while ( before.length > 3 ) {
			result += before.substr( before.length - 3 ) + ','
			before = before.substr( 0, before.length - 3 )
		}
	    result = before + ',' + result
		result = result.substr( 0, result.length - 1 ) + '.' + info[ 1 ]
	}
  return result
} 

function add_item(qua, its){
	var divitem = document.getElementById('area_item');
	var divquantity = document.getElementById('area_quantity');
	var divprice = document.getElementById('area_price');
	var divamount = document.getElementById('area_amount');
	var divtamount = document.getElementById('area_tamount');
	var all_item='', all_quantity='', all_price='', all_amount='', all_tamount=0;

	alert('You selected ' + its + ' ' + qua + ' piece(s).');
// Massage Oils //
	if(document.getElementById('sel_MO_Balance').value > 0){
		var i_MO_Balance = 'Balance Massage Oil [100 ml]', q_MO_Balance = document.getElementById('sel_MO_Balance').value, p_MO_Balance = 2350, a_MO_Balance;

		all_tamount = all_tamount + (p_MO_Balance*q_MO_Balance);
		i_MO_Balance = i_MO_Balance + '<br>';
		a_MO_Balance = currency_format(p_MO_Balance*q_MO_Balance) + '<br>';
		q_MO_Balance = q_MO_Balance + '<br>';
		p_MO_Balance = currency_format(p_MO_Balance) + '<br>';
	}else{
		i_MO_Balance = '';
		q_MO_Balance = '';
		p_MO_Balance = '';
		a_MO_Balance = '';
	}

	if(document.getElementById('sel_MO_Contemplation').value > 0){
		var i_MO_Contemplation = 'Contemplation Massage Oil [100 ml]', q_MO_Contemplation = document.getElementById('sel_MO_Contemplation').value, p_MO_Contemplation = 2350, a_MO_Contemplation;
		all_tamount = all_tamount + (p_MO_Contemplation*q_MO_Contemplation);
		i_MO_Contemplation = i_MO_Contemplation + '<br>';
		a_MO_Contemplation = currency_format(p_MO_Contemplation*q_MO_Contemplation) + '<br>';
		q_MO_Contemplation = q_MO_Contemplation + '<br>';
		p_MO_Contemplation = currency_format(p_MO_Contemplation) + '<br>';
	}else{
		i_MO_Contemplation = '';
		q_MO_Contemplation = '';
		p_MO_Contemplation = '';
		a_MO_Contemplation = '';
	}

	if(document.getElementById('sel_MO_Purity').value > 0){
		var i_MO_Purity = 'Purity Massage Oil [100 ml]', q_MO_Purity = document.getElementById('sel_MO_Purity').value, p_MO_Purity = 2350, a_MO_Purity;
		all_tamount = all_tamount + (p_MO_Purity*q_MO_Purity);
		i_MO_Purity = i_MO_Purity + '<br>';
		a_MO_Purity = currency_format(p_MO_Purity*q_MO_Purity) + '<br>';
		q_MO_Purity = q_MO_Purity + '<br>';
		p_MO_Purity = currency_format(p_MO_Purity) + '<br>';
	}else{
		i_MO_Purity = '';
		q_MO_Purity = '';
		p_MO_Purity = '';
		a_MO_Purity = '';
	}

	if(document.getElementById('sel_MO_Renewal').value > 0){
		var i_MO_Renewal = 'Renewal Massage Oil [100 ml]', q_MO_Renewal = document.getElementById('sel_MO_Renewal').value, p_MO_Renewal = 2350, a_MO_Renewal;
		all_tamount = all_tamount + (p_MO_Renewal*q_MO_Renewal);
		i_MO_Renewal = i_MO_Renewal + '<br>';
		a_MO_Renewal = currency_format(p_MO_Renewal*q_MO_Renewal) + '<br>';
		q_MO_Renewal = q_MO_Renewal + '<br>';
		p_MO_Renewal = currency_format(p_MO_Renewal) + '<br>';
	}else{
		i_MO_Renewal = '';
		q_MO_Renewal = '';
		p_MO_Renewal = '';
		a_MO_Renewal = '';
	}

	if(document.getElementById('sel_MO_Zing').value > 0){
		var i_MO_Zing = 'Zing Massage Oil [100 ml]', q_MO_Zing = document.getElementById('sel_MO_Zing').value, p_MO_Zing = 2350, a_MO_Zing;
		all_tamount = all_tamount + (p_MO_Zing*q_MO_Zing);
		i_MO_Zing = i_MO_Zing + '<br>';
		a_MO_Zing = currency_format(p_MO_Zing*q_MO_Zing) + '<br>';
		q_MO_Zing = q_MO_Zing + '<br>';
		p_MO_Zing = currency_format(p_MO_Zing) + '<br>';
	}else{
		i_MO_Zing = '';
		q_MO_Zing = '';
		p_MO_Zing = '';
		a_MO_Zing = '';
	}

// Body Products //
	if(document.getElementById('sel_LC_Creme').value > 0){
		var i_LC_Creme = 'La Creme de la Creme [120 ml]', q_LC_Creme = document.getElementById('sel_LC_Creme').value, p_LC_Creme = 2600, a_LC_Creme;
		all_tamount = all_tamount + (p_LC_Creme*q_LC_Creme);
		i_LC_Creme = i_LC_Creme + '<br>';
		a_LC_Creme = currency_format(p_LC_Creme*q_LC_Creme) + '<br>';
		q_LC_Creme = q_LC_Creme + '<br>';
		p_LC_Creme = currency_format(p_LC_Creme) + '<br>';
	}else{
		i_LC_Creme = '';
		q_LC_Creme = '';
		p_LC_Creme = '';
		a_LC_Creme = '';
	}

	if(document.getElementById('sel_SOS_Creme').value > 0){
		var i_SOS_Creme = 'SOS Aches and Pains [120 ml]', q_SOS_Creme = document.getElementById('sel_SOS_Creme').value, p_SOS_Creme = 2450, a_SOS_Creme;
		all_tamount = all_tamount + (p_SOS_Creme*q_SOS_Creme);
		i_SOS_Creme = i_SOS_Creme + '<br>';
		a_SOS_Creme = currency_format(p_SOS_Creme*q_SOS_Creme) + '<br>';
		q_SOS_Creme = q_SOS_Creme + '<br>';
		p_SOS_Creme = currency_format(p_SOS_Creme) + '<br>';
	}else{
		i_SOS_Creme = '';
		q_SOS_Creme = '';
		p_SOS_Creme = '';
		a_SOS_Creme = '';
	}

	if(document.getElementById('sel_Aromatic_Coffee').value > 0){
		var i_Aromatic_Coffee = 'Aromatic Coffee Body Polish [120 ml]', q_Aromatic_Coffee = document.getElementById('sel_Aromatic_Coffee').value, p_Aromatic_Coffee = 2450, a_Aromatic_Coffee;
		all_tamount = all_tamount + (p_Aromatic_Coffee*q_Aromatic_Coffee);
		i_Aromatic_Coffee = i_Aromatic_Coffee + '<br>';
		a_Aromatic_Coffee = currency_format(p_Aromatic_Coffee*q_Aromatic_Coffee) + '<br>';
		q_Aromatic_Coffee = q_Aromatic_Coffee + '<br>';
		p_Aromatic_Coffee = currency_format(p_Aromatic_Coffee) + '<br>';
	}else{
		i_Aromatic_Coffee = '';
		q_Aromatic_Coffee = '';
		p_Aromatic_Coffee = '';
		a_Aromatic_Coffee = '';
	}

	if(document.getElementById('sel_Zesty').value > 0){
		var i_Zesty = 'Zesty Thai Body Polish [120 ml]', q_Zesty = document.getElementById('sel_Zesty').value, p_Zesty = 2450, a_Zesty;
		all_tamount = all_tamount + (p_Zesty*q_Zesty);
		i_Zesty = i_Zesty + '<br>';
		a_Zesty = currency_format(p_Zesty*q_Zesty) + '<br>';
		q_Zesty = q_Zesty + '<br>';
		p_Zesty = currency_format(p_Zesty) + '<br>';
	}else{
		i_Zesty = '';
		q_Zesty = '';
		p_Zesty = '';
		a_Zesty = '';
	}

	if(document.getElementById('sel_Aloe_Skin_Soother').value > 0){
		var i_Aloe_Skin_Soother = 'Aloe Skin Soother [100 ml]', q_Aloe_Skin_Soother = document.getElementById('sel_Aloe_Skin_Soother').value, p_Aloe_Skin_Soother = 2600, a_Aloe_Skin_Soother;
		all_tamount = all_tamount + (p_Aloe_Skin_Soother*q_Aloe_Skin_Soother);
		i_Aloe_Skin_Soother = i_Aloe_Skin_Soother + '<br>';
		a_Aloe_Skin_Soother = currency_format(p_Aloe_Skin_Soother*q_Aloe_Skin_Soother) + '<br>';
		q_Aloe_Skin_Soother = q_Aloe_Skin_Soother + '<br>';
		p_Aloe_Skin_Soother = currency_format(p_Aloe_Skin_Soother) + '<br>';
	}else{
		i_Aloe_Skin_Soother = '';
		q_Aloe_Skin_Soother = '';
		p_Aloe_Skin_Soother = '';
		a_Aloe_Skin_Soother = '';
	}

	if(document.getElementById('sel_Bon_Voyage').value > 0){
		var i_Bon_Voyage = 'Bon Voyage Cellulite [100 ml]', q_Bon_Voyage = document.getElementById('sel_Bon_Voyage').value, p_Bon_Voyage = 2600, a_Bon_Voyage;
		all_tamount = all_tamount + (p_Bon_Voyage*q_Bon_Voyage);
		i_Bon_Voyage = i_Bon_Voyage + '<br>';
		a_Bon_Voyage = currency_format(p_Bon_Voyage*q_Bon_Voyage) + '<br>';
		q_Bon_Voyage = q_Bon_Voyage + '<br>';
		p_Bon_Voyage = currency_format(p_Bon_Voyage) + '<br>';
	}else{
		i_Bon_Voyage = '';
		q_Bon_Voyage = '';
		p_Bon_Voyage = '';
		a_Bon_Voyage = '';
	}

	if(document.getElementById('sel_BM_Lemongrass').value > 0){
		var i_BM_Lemongrass = 'Lemongrass Body Moisturizer [100 ml]', q_BM_Lemongrass = document.getElementById('sel_BM_Lemongrass').value, p_BM_Lemongrass = 2450, a_BM_Lemongrass;
		all_tamount = all_tamount + (p_BM_Lemongrass*q_BM_Lemongrass);
		i_BM_Lemongrass = i_BM_Lemongrass + '<br>';
		a_BM_Lemongrass = currency_format(p_BM_Lemongrass*q_BM_Lemongrass) + '<br>';
		q_BM_Lemongrass = q_BM_Lemongrass + '<br>';
		p_BM_Lemongrass = currency_format(p_BM_Lemongrass) + '<br>';
	}else{
		i_BM_Lemongrass = '';
		q_BM_Lemongrass = '';
		p_BM_Lemongrass = '';
		a_BM_Lemongrass = '';
	}
// Face Products //
	if(document.getElementById('sel_FM_Balance').value > 0){
		var i_FM_Balance = 'Balancing Floral Mist [100 ml]', q_FM_Balance = document.getElementById('sel_FM_Balance').value, p_FM_Balance = 1650, a_FM_Balance;
		all_tamount = all_tamount + (p_FM_Balance*q_FM_Balance);
		i_FM_Balance = i_FM_Balance + '<br>';
		a_FM_Balance = currency_format(p_FM_Balance*q_FM_Balance) + '<br>';
		q_FM_Balance = q_FM_Balance + '<br>';
		p_FM_Balance = currency_format(p_FM_Balance) + '<br>';
	}else{
		i_FM_Balance = '';
		q_FM_Balance = '';
		p_FM_Balance = '';
		a_FM_Balance = '';
	}

	if(document.getElementById('sel_FM_Healing').value > 0){
		var i_FM_Healing = 'Healing Floral Mist [100 ml]', q_FM_Healing = document.getElementById('sel_FM_Healing').value, p_FM_Healing = 1650, a_FM_Healing;
		all_tamount = all_tamount + (p_FM_Healing*q_FM_Healing);
		i_FM_Healing = i_FM_Healing + '<br>';
		a_FM_Healing = currency_format(p_FM_Healing*q_FM_Healing) + '<br>';
		q_FM_Healing = q_FM_Healing + '<br>';
		p_FM_Healing = currency_format(p_FM_Healing) + '<br>';
	}else{
		i_FM_Healing = '';
		q_FM_Healing = '';
		p_FM_Healing = '';
		a_FM_Healing = '';
	}

	if(document.getElementById('sel_FM_Hydrating').value > 0){
		var i_FM_Hydrating = 'Hydrating Floral Mist [100 ml]', q_FM_Hydrating = document.getElementById('sel_FM_Hydrating').value, p_FM_Hydrating = 1650, a_FM_Hydrating;
		all_tamount = all_tamount + (p_FM_Hydrating*q_FM_Hydrating);
		i_FM_Hydrating = i_FM_Hydrating + '<br>';
		a_FM_Hydrating = currency_format(p_FM_Hydrating*q_FM_Hydrating) + '<br>';
		q_FM_Hydrating = q_FM_Hydrating + '<br>';
		p_FM_Hydrating = currency_format(p_FM_Hydrating) + '<br>';
	}else{
		i_FM_Hydrating = '';
		q_FM_Hydrating = '';
		p_FM_Hydrating = '';
		a_FM_Hydrating = '';
	}

	if(document.getElementById('sel_Mild_Cleansing_Milk').value > 0){
		var i_Mild_Cleansing_Milk = 'Mild Cleansing Milk [100 ml]', q_Mild_Cleansing_Milk = document.getElementById('sel_Mild_Cleansing_Milk').value, p_Mild_Cleansing_Milk = 1650, a_Mild_Cleansing_Milk;
		all_tamount = all_tamount + (p_Mild_Cleansing_Milk*q_Mild_Cleansing_Milk);
		i_Mild_Cleansing_Milk = i_Mild_Cleansing_Milk + '<br>';
		a_Mild_Cleansing_Milk = currency_format(p_Mild_Cleansing_Milk*q_Mild_Cleansing_Milk) + '<br>';
		q_Mild_Cleansing_Milk = q_Mild_Cleansing_Milk + '<br>';
		p_Mild_Cleansing_Milk = currency_format(p_Mild_Cleansing_Milk) + '<br>';
	}else{
		i_Mild_Cleansing_Milk = '';
		q_Mild_Cleansing_Milk = '';
		p_Mild_Cleansing_Milk = '';
		a_Mild_Cleansing_Milk = '';
	}

	if(document.getElementById('sel_Fresh_Cleansing_Form').value > 0){
		var i_Fresh_Cleansing_Form = 'Fresh Cleansing Form [100 ml]', q_Fresh_Cleansing_Form = document.getElementById('sel_Fresh_Cleansing_Form').value, p_Fresh_Cleansing_Form = 1650, a_Fresh_Cleansing_Form;
		all_tamount = all_tamount + (p_Fresh_Cleansing_Form*q_Fresh_Cleansing_Form);
		i_Fresh_Cleansing_Form = i_Fresh_Cleansing_Form + '<br>';
		a_Fresh_Cleansing_Form = currency_format(p_Fresh_Cleansing_Form*q_Fresh_Cleansing_Form) + '<br>';
		q_Fresh_Cleansing_Form = q_Fresh_Cleansing_Form + '<br>';
		p_Fresh_Cleansing_Form = currency_format(p_Fresh_Cleansing_Form) + '<br>';
	}else{
		i_Fresh_Cleansing_Form = '';
		q_Fresh_Cleansing_Form = '';
		p_Fresh_Cleansing_Form = '';
		a_Fresh_Cleansing_Form = '';
	}

	if(document.getElementById('sel_Moisture_Light').value > 0){
		var i_Moisture_Light = 'Moisture Light [50 ml]', q_Moisture_Light = document.getElementById('sel_Moisture_Light').value, p_Moisture_Light = 2800, a_Moisture_Light;
		all_tamount = all_tamount + (p_Moisture_Light*q_Moisture_Light);
		i_Moisture_Light = i_Moisture_Light + '<br>';
		a_Moisture_Light = currency_format(p_Moisture_Light*q_Moisture_Light) + '<br>';
		q_Moisture_Light = q_Moisture_Light + '<br>';
		p_Moisture_Light = currency_format(p_Moisture_Light) + '<br>';
	}else{
		i_Moisture_Light = '';
		q_Moisture_Light = '';
		p_Moisture_Light = '';
		a_Moisture_Light = '';
	}

	if(document.getElementById('sel_Moisture_Rich').value > 0){
		var i_Moisture_Rich = 'Moisture Rich [50 ml]', q_Moisture_Rich = document.getElementById('sel_Moisture_Rich').value, p_Moisture_Rich = 2800, a_Moisture_Rich;
		all_tamount = all_tamount + (p_Moisture_Rich*q_Moisture_Rich);
		i_Moisture_Rich = i_Moisture_Rich + '<br>';
		a_Moisture_Rich = currency_format(p_Moisture_Rich*q_Moisture_Rich) + '<br>';
		q_Moisture_Rich = q_Moisture_Rich + '<br>';
		p_Moisture_Rich = currency_format(p_Moisture_Rich) + '<br>';
	}else{
		i_Moisture_Rich = '';
		q_Moisture_Rich = '';
		p_Moisture_Rich = '';
		a_Moisture_Rich = '';
	}

	if(document.getElementById('sel_MO_Healing_Facial').value > 0){
		var i_MO_Healing_Facial = 'Healing Facial Massage Oil [50 ml]', q_MO_Healing_Facial = document.getElementById('sel_MO_Healing_Facial').value, p_MO_Healing_Facial = 1950, a_MO_Healing_Facial;
		all_tamount = all_tamount + (p_MO_Healing_Facial*q_MO_Healing_Facial);
		i_MO_Healing_Facial = i_MO_Healing_Facial + '<br>';
		a_MO_Healing_Facial = currency_format(p_MO_Healing_Facial*q_MO_Healing_Facial) + '<br>';
		q_MO_Healing_Facial = q_MO_Healing_Facial + '<br>';
		p_MO_Healing_Facial = currency_format(p_MO_Healing_Facial) + '<br>';
	}else{
		i_MO_Healing_Facial = '';
		q_MO_Healing_Facial = '';
		p_MO_Healing_Facial = '';
		a_MO_Healing_Facial = '';
	}

	if(document.getElementById('sel_Eye_Makeup').value > 0){
		var i_Eye_Makeup = 'Gentle Eye Make-up Remover [50 ml]', q_Eye_Makeup = document.getElementById('sel_Eye_Makeup').value, p_Eye_Makeup = 1350, a_Eye_Makeup;
		all_tamount = all_tamount + (p_Eye_Makeup*q_Eye_Makeup);
		i_Eye_Makeup = i_Eye_Makeup + '<br>';
		a_Eye_Makeup = currency_format(p_Eye_Makeup*q_Eye_Makeup) + '<br>';
		q_Eye_Makeup = q_Eye_Makeup + '<br>';
		p_Eye_Makeup = currency_format(p_Eye_Makeup) + '<br>';
	}else{
		i_Eye_Makeup = '';
		q_Eye_Makeup = '';
		p_Eye_Makeup = '';
		a_Eye_Makeup = '';
	}

	if(document.getElementById('sel_EY_Serum_Day').value > 0){
		var i_EY_Serum_Day = 'Eternal Youth Serum for the day [25 ml]', q_EY_Serum_Day = document.getElementById('sel_EY_Serum_Day').value, p_EY_Serum_Day = 2900, a_EY_Serum_Day;
		all_tamount = all_tamount + (p_EY_Serum_Day*q_EY_Serum_Day);
		i_EY_Serum_Day = i_EY_Serum_Day + '<br>';
		a_EY_Serum_Day = currency_format(p_EY_Serum_Day*q_EY_Serum_Day) + '<br>';
		q_EY_Serum_Day = q_EY_Serum_Day + '<br>';
		p_EY_Serum_Day = currency_format(p_EY_Serum_Day) + '<br>';
	}else{
		i_EY_Serum_Day = '';
		q_EY_Serum_Day = '';
		p_EY_Serum_Day = '';
		a_EY_Serum_Day = '';
	}

	if(document.getElementById('sel_EY_Serum').value > 0){
		var i_EY_Serum = 'Eternal Youth Serum for the night [25 ml]', q_EY_Serum = document.getElementById('sel_EY_Serum').value, p_EY_Serum = 2900, a_EY_Serum;
		all_tamount = all_tamount + (p_EY_Serum*q_EY_Serum);
		i_EY_Serum = i_EY_Serum + '<br>';
		a_EY_Serum = currency_format(p_EY_Serum*q_EY_Serum) + '<br>';
		q_EY_Serum = q_EY_Serum + '<br>';
		p_EY_Serum = currency_format(p_EY_Serum) + '<br>';
	}else{
		i_EY_Serum = '';
		q_EY_Serum = '';
		p_EY_Serum = '';
		a_EY_Serum = '';
	}

	if(document.getElementById('sel_EY_Eye_Serum').value > 0){
		var i_EY_Eye_Serum = 'Eternal Youth Eye Serum [25 ml]', q_EY_Eye_Serum = document.getElementById('sel_EY_Eye_Serum').value, p_EY_Eye_Serum = 2900, a_EY_Eye_Serum;
		all_tamount = all_tamount + (p_EY_Eye_Serum*q_EY_Eye_Serum);
		i_EY_Eye_Serum = i_EY_Eye_Serum + '<br>';
		a_EY_Eye_Serum = currency_format(p_EY_Eye_Serum*q_EY_Eye_Serum) + '<br>';
		q_EY_Eye_Serum = q_EY_Eye_Serum + '<br>';
		p_EY_Eye_Serum = currency_format(p_EY_Eye_Serum) + '<br>';
	}else{
		i_EY_Eye_Serum = '';
		q_EY_Eye_Serum = '';
		p_EY_Eye_Serum = '';
		a_EY_Eye_Serum = '';
	}

/*	if(document.getElementById('sel_Purifying_Mask').value > 0){
		var i_Purifying_Mask = 'Purifying Mask [60 ml]', q_Purifying_Mask = document.getElementById('sel_Purifying_Mask').value, p_Purifying_Mask = 2450, a_Purifying_Mask;
		all_tamount = all_tamount + (p_Purifying_Mask*q_Purifying_Mask);
		i_Purifying_Mask = i_Purifying_Mask + '<br>';
		a_Purifying_Mask = currency_format(p_Purifying_Mask*q_Purifying_Mask) + '<br>';
		q_Purifying_Mask = q_Purifying_Mask + '<br>';
		p_Purifying_Mask = currency_format(p_Purifying_Mask) + '<br>';
	}else{
		i_Purifying_Mask = '';
		q_Purifying_Mask = '';
		p_Purifying_Mask = '';
		a_Purifying_Mask = '';
	}*/

	if(document.getElementById('sel_Revitalizing_Mask').value > 0){
		var i_Revitalizing_Mask = 'Revitalizing Mask [60 ml]', q_Revitalizing_Mask = document.getElementById('sel_Revitalizing_Mask').value, p_Revitalizing_Mask = 2450, a_Revitalizing_Mask;
		all_tamount = all_tamount + (p_Revitalizing_Mask*q_Revitalizing_Mask);
		i_Revitalizing_Mask = i_Revitalizing_Mask + '<br>';
		a_Revitalizing_Mask = currency_format(p_Revitalizing_Mask*q_Revitalizing_Mask) + '<br>';
		q_Revitalizing_Mask = q_Revitalizing_Mask + '<br>';
		p_Revitalizing_Mask = currency_format(p_Revitalizing_Mask) + '<br>';
	}else{
		i_Revitalizing_Mask = '';
		q_Revitalizing_Mask = '';
		p_Revitalizing_Mask = '';
		a_Revitalizing_Mask = '';
	}

	if(document.getElementById('sel_Daily_Facial_Exfoliater').value > 0){
		var i_Daily_Facial_Exfoliater = 'Daily Facial Exfoliater [60 ml]', q_Daily_Facial_Exfoliater = document.getElementById('sel_Daily_Facial_Exfoliater').value, p_Daily_Facial_Exfoliater = 1900, a_Daily_Facial_Exfoliater;
		all_tamount = all_tamount + (p_Daily_Facial_Exfoliater*q_Daily_Facial_Exfoliater);
		i_Daily_Facial_Exfoliater = i_Daily_Facial_Exfoliater + '<br>';
		a_Daily_Facial_Exfoliater = currency_format(p_Daily_Facial_Exfoliater*q_Daily_Facial_Exfoliater) + '<br>';
		q_Daily_Facial_Exfoliater = q_Daily_Facial_Exfoliater + '<br>';
		p_Daily_Facial_Exfoliater = currency_format(p_Daily_Facial_Exfoliater) + '<br>';
	}else{
		i_Daily_Facial_Exfoliater = '';
		q_Daily_Facial_Exfoliater = '';
		p_Daily_Facial_Exfoliater = '';
		a_Daily_Facial_Exfoliater = '';
	}

	all_item = i_MO_Balance + i_MO_Contemplation + i_MO_Purity + i_MO_Renewal + i_MO_Zing + i_LC_Creme + i_SOS_Creme + i_Aromatic_Coffee + i_Zesty + i_Aloe_Skin_Soother + i_Bon_Voyage + i_BM_Lemongrass + i_FM_Balance + i_FM_Healing + i_FM_Hydrating + i_Mild_Cleansing_Milk + i_Fresh_Cleansing_Form + i_Moisture_Light + i_Moisture_Rich + i_MO_Healing_Facial + i_Eye_Makeup + i_EY_Serum_Day + i_EY_Serum + i_EY_Eye_Serum + i_Revitalizing_Mask + i_Daily_Facial_Exfoliater;// + i_Purifying_Mask
	all_quantity = q_MO_Balance + q_MO_Contemplation + q_MO_Purity + q_MO_Renewal + q_MO_Zing + q_LC_Creme + q_SOS_Creme + q_Aromatic_Coffee + q_Zesty + q_Aloe_Skin_Soother + q_Bon_Voyage + q_BM_Lemongrass + q_FM_Balance + q_FM_Healing + q_FM_Hydrating + q_Mild_Cleansing_Milk + q_Fresh_Cleansing_Form + q_Moisture_Light + q_Moisture_Rich + q_MO_Healing_Facial + q_Eye_Makeup + q_EY_Serum_Day + q_EY_Serum + q_EY_Eye_Serum + q_Revitalizing_Mask + q_Daily_Facial_Exfoliater;// + q_Purifying_Mask
	all_price = p_MO_Balance + p_MO_Contemplation + p_MO_Purity + p_MO_Renewal + p_MO_Zing + p_LC_Creme + p_SOS_Creme + p_Aromatic_Coffee + p_Zesty + p_Aloe_Skin_Soother + p_Bon_Voyage + p_BM_Lemongrass + p_FM_Balance + p_FM_Healing + p_FM_Hydrating + p_Mild_Cleansing_Milk + p_Fresh_Cleansing_Form + p_Moisture_Light + p_Moisture_Rich + p_MO_Healing_Facial + p_Eye_Makeup + p_EY_Serum_Day + p_EY_Serum + p_EY_Eye_Serum + p_Revitalizing_Mask + p_Daily_Facial_Exfoliater;// + p_Purifying_Mask
	all_amount = a_MO_Balance + a_MO_Contemplation + a_MO_Purity + a_MO_Renewal + a_MO_Zing + a_LC_Creme + a_SOS_Creme + a_Aromatic_Coffee + a_Zesty + a_Aloe_Skin_Soother + a_Bon_Voyage + a_BM_Lemongrass + a_FM_Balance + a_FM_Healing + a_FM_Hydrating + a_Mild_Cleansing_Milk + a_Fresh_Cleansing_Form + a_Moisture_Light + a_Moisture_Rich + a_MO_Healing_Facial + a_Eye_Makeup + a_EY_Serum_Day + a_EY_Serum + a_EY_Eye_Serum + a_Revitalizing_Mask + a_Daily_Facial_Exfoliater;// + a_Purifying_Mask
	divitem.innerHTML = all_item;
	divquantity.innerHTML = all_quantity;
	divprice.innerHTML = all_price;
	divamount.innerHTML = all_amount;
	divtamount.innerHTML = '<b>Total Amount (Baht)</b> &nbsp;&nbsp;&nbsp; ' + currency_format(all_tamount) + '&nbsp;<br><br>';
	document.getElementById('txt_item').value = all_item;
	document.getElementById('txt_qua').value = all_quantity;
	document.getElementById('txt_price').value = all_price;
	document.getElementById('txt_amou').value = all_amount;
	document.getElementById('txt_tamou').value = currency_format(all_tamount);
}

function hidediv() {
	var divHideProducts = document.getElementById('HideProducts');

	//var ele = document.getElementById("toggleText");
	//var text = document.getElementById("displayText");
	if(divHideProducts.style.display == "block") {
    	divHideProducts.style.display = "none";
			//text.innerHTML = "show";
  	}else {
		divHideProducts.style.display = "block";
		//text.innerHTML = "hide";
	}
} 

function showdiv() { 
	if (document.getElementById) { // DOM3 = IE5, NS6 
		document.getElementById('HideProducts').style.visibility = 'visible'; 
	} else { 
		if (document.layers) { // Netscape 4 
			document.HideProducts.visibility = 'visible'; 
		} else { // IE 4 
			document.all.HideProducts.style.visibility = 'visible'; 
		} 
	} 

} 

function toggle() {
	var ele = document.getElementById("toggleText");
	var text = document.getElementById("displayText");
	if(ele.style.display == "block") {
    		ele.style.display = "none";
		text.innerHTML = "Show all products";
  	}
	else {
		ele.style.display = "block";
		text.innerHTML = "Hide products";
	}
}
