function np() {
 return void(0)
}

function goToSection(sectionId) {
 new Ajax.Updater('country', 'get.section.asp', {method: 'post', evalScripts: true, parameters: {sectionId: sectionId}});
}

function goToSection1(sectionId) {
 new Ajax.Updater('country1', 'get.section1.asp', {method: 'post', evalScripts: true, parameters: {sectionId: sectionId}});
}

function goToCategory(category, sub_category) 
{
my_category = document.admin.category.value
new Ajax.Updater('subcat', 'get.section.asp', {method: 'post', evalScripts: true, parameters: {new_category: my_category, cat_id: category, sub_cat_id: sub_category}});
}


function goToCategory1() 
{
my_category = document.admin2.category.value
new Ajax.Updater('subcategory', 'get.sub_category.asp', {method: 'post', evalScripts: true, parameters: {new_category: my_category}});
}
