// STICKERS PRICE REQUEST

function Stickers_TestPriceRequest() {

	new Ajax.Request("stickers_calc.php", 
		{ 
		method: 'post', 
		parameters: Form.serialize($("stickers_pricecalc")), 
		onComplete: showTestStickersCalculations 
		});			
}

// STICKERS DISPLAY PRICE
function showTestStickersCalculations(req){
	$('stickerprice').appear({ duration: 1.5 });
	$('stickers_showprice').appear({ duration: 1.5 });
	$('stickers_showprice').innerHTML= req.responseText;
}

// STICKERS show sample form
function Stickers_ShowSampleForm(){
	$('stickersamples').appear({ duration: 1.5 });
}

// STICKERS submit sample form
function Stickers_SampleSubmit(){
	$('stickers_emailsent').appear({ duration: 1.5 });
}


// STICKERS submit sample form

function Stickers_TestPriceEmail() {
	
	new Ajax.Request("stickers_calcemail.php", 
		{ 
		method: 'post', 
		parameters: Form.serialize($("sticker_samples")), 
		onComplete: showTestStickersEmailSent 
		});			
}

// STICKERS Sample Form Submitted Result - emailsent
function showTestStickersEmailSent(req){

	$('stickers_showprice').appear({ duration: 1.5 });
	$('stickers_showprice').innerHTML= req.responseText;
    
}

// CORFLUTE PRICE REQUEST

function Corflute_TestPriceRequest() {

	new Ajax.Request("corflute_calc.php", 
		{ 
		method: 'post', 
		parameters: Form.serialize($("corflute_pricecalc")), 
		onComplete: showTestCorfluteCalculations 
		});			
}

// CORFLUTE DISPLAY PRICE
function showTestCorfluteCalculations(req){
	$('stickerprice').appear({ duration: 1.5 });
	$('stickers_showprice').appear({ duration: 1.5 });
	$('stickers_showprice').innerHTML= req.responseText;
}

// CORFLUTE submit sample form

function Corflute_TestPriceEmail() {
	
	new Ajax.Request("corflute_calcemail.php", 
		{ 
		method: 'post', 
		parameters: Form.serialize($("sticker_samples")), 
		onComplete: showTestCorfluteEmailSent 
		});			
}

// CORFLUTE Sample Form Submitted Result
function showTestCorfluteEmailSent(req){

	$('stickers_showprice').appear({ duration: 1.5 });
	$('stickers_showprice').innerHTML= req.responseText;
    
}
