function SubmitQuoteForm ()
{
	var Form_Obj = document.forms['Cms_Store_Quote'];
	var Req_Obj1 = Form_Obj.ff_Contact_Name;
	var Req_Obj2 = Form_Obj.ff_Email;
	if ( Req_Obj1.value == '' || Req_Obj1.value == 'Please enter a Contact Name.' )
	{
		Req_Obj1.style.backgroundColor = '#8cc63e';
		Req_Obj1.value = 'Please enter a Contact Name.';
		Req_Obj1.focus ();
	} // end if
	else if ( Req_Obj2.value == '' || Req_Obj2.value == 'Please enter an Email Address.' )
	{
		Req_Obj1.style.backgroundColor = '#ffffff';
		Req_Obj2.style.backgroundColor = '#8cc63e';
		Req_Obj2.value = 'Please enter an Email Address.';
		Req_Obj2.focus ();
	} // end else if
	else
	{
		Form_Obj.submit ();
	} // end else
} // end function
function OpenPrintForm ()
{
	window.open ( 'form.aspx?sid=1&amp;c=1-060728-1506', 'form_win', 'width=735,height=500,toolbar=1,status=1,scrollbars=1,resizable=1' );
} // end function