function GetCountry(defaultValue,isNotWithSelect)
{var sCountry="Germany,France,United Kingdom,Italy,Spain,South Africa,Poland,Romania,Netherlands,Greece,Portugal,Belgium,Czech Republic,Hungary,Sweden,Austria,Bulgaria,Slovakia,Denmark,Finland,Ireland,Lithuania,Latvia,Slovenia,Estonia,Cyprus,Luxembourg,Malta";var xCountry=sCountry.split(",");var str="";for(i=0;i<xCountry.length;i++)
if(xCountry[i]==defaultValue)str+="<option value='"+xCountry[i]+"' selected>"+xCountry[i]+"</option>\n";else str+="<option value='"+xCountry[i]+"'>"+xCountry[i]+"</option>\n";document.write(str);}
