function quotemachine()
{

var _lang=document.quote.language.value;
var _subject=document.quote.subject.value;
var _words=document.quote.words.value;
var _cost;
var _rate;

_rate=0;
if (_lang=="EnglishGreek")
{if (_subject=="General") {_rate=0.06}
else if (_subject=="Technical") {_rate=0.09}
else if (_subject=="Business") {_rate=0.10}
else if (_subject=="Localization") {_rate=0.11}
else if (_subject=="Medical") {_rate=0.10}}
else
if (_lang=="GreekEnglish")
{if (_subject=="General") {_rate=0.08}
else if (_subject=="Technical") {_rate=0.11}
else if (_subject=="Business") {_rate=0.12}
else if (_subject=="Localization") {_rate=0.13}
else if (_subject=="Medical") {_rate=0.12}}
else
if (_lang=="GermanGreek" )
{if (_subject=="General") {_rate=0.07}
else if (_subject=="Technical") {_rate=0.12}
else if (_subject=="Business") {_rate=0.15}
else if (_subject=="Localization") {_rate=0.12}
else if (_subject=="Medical") {_rate=0.12}}
else
if (_lang=="GreekGerman" )
{if (_subject=="General") {_rate=0.09}
else if (_subject=="Technical") {_rate=0.12}
else if (_subject=="Business") {_rate=0.12}
else if (_subject=="Localization") {_rate=0.13}
else if (_subject=="Medical") {_rate=0.12}}
else
if (_lang=="GreekFrench" || _lang=="GreekItalian" || _lang=="GreekSpanish")
{if (_subject=="General") {_rate=0.08}
else if (_subject=="Technical") {_rate=0.12}
else if (_subject=="Business") {_rate=0.12}
else if (_subject=="Localization") {_rate=0.13}
else if (_subject=="Medical") {_rate=0.12}}
else
if (_lang=="FrenchGreek" || _lang=="ItalianGreek" || _lang=="SpanishGreek")
{if (_subject=="General") {_rate=0.07}
else if (_subject=="Technical") {_rate=0.10}
else if (_subject=="Business") {_rate=0.12}
else if (_subject=="Localization") {_rate=0.12}
else if (_subject=="Medical") {_rate=0.12}}
else
if (_lang=="GreekOther" || _lang=="OtherGreek")
{if (_subject=="General") {_rate=0}
else if (_subject=="Technical") {_rate=0}
else if (_subject=="Business") {_rate=0}
else if (_subject=="Localization") {_rate=0}
else if (_subject=="Medical") {_rate=0}}
else {_rate=0};

_cost=_words*_rate;
if (_cost<30) {_cost=30};
var calculate=Math.round(_cost*100)/100;
if (_rate==0) {calculate="Contact us!"}
else {calculate=calculate+" euro"};
document.quote.cost.value=calculate;
}
