netscape_users_click="Netscape User's hit CTRL+D to add a bookmark to this site."
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['authorname_e']='Artist name in english';
form_elements['authorname_s']='Artist name in serbian';

function get_form_elem_name( index ){
	if(form_elements[index] != undefined && form_elements[index] != null ){
		return form_elements[index];
	}
	else{
		return index;
	}
}