netscape_users_click="Netscape User's hit CTRL+D to add a bookmark to this site." 
bookmarks="AUTO BOOKMKARING not supported in your current browser.\r\nPress CTRL+D, or CMD+D to manually bookmark this page."
must_select_country="You must select your country"
must_select_transport="You must select transporyt agent"
must_select_payment="You must select payment options"
no_gift_condition="You don't have gift condition "
a_messages = [
	'No form name passed to validator construction routine',
	'No array of "%form%" form fields passed to validator construction routine',
	'Form "%form%" can not be found in this document',
	'Incomplete "%n%" form field descriptor entry. "l" attribute is missing',
	'Can not find form field "%n%" in the form "%form%"',
	'Can not find label tag (id="%t%")',
	'Can not verify match. Field "%m%" was not found',
	'You did not enter "%l%"',
	'Value "%l%" must be longer than  %mn% characters',
	'Value "%l%" must not be longer than %mx% characters',
	'"%v%" can not be value of "%l%"',
	'"%l%" must match "%ml%"'
]

form_elements=new Array();
form_elements['name_e']='Artwork name in english';
form_elements['name_s']='Artwork name in serbian';
form_elements['name']='Name and Surname';
form_elements['jmbg']='JMBG';
form_elements['address']='Address';
form_elements['city']='City ';
form_elements['zip_code']='ZIP/Postal Code';
form_elements['province']='State/Province/Region';
form_elements['phone']='Phone';
form_elements['mobile']='Sub-phone ';
form_elements['fax']='Fax';

function get_form_elem_name( index ){
	if(form_elements[index] != undefined && form_elements[index] != null ){
		return form_elements[index];
	}
	else{
		return index;
	}
}
