//------------------------------------------------------------------------------------------------>Submit Cat Form
function goto_archive_month_year_java(archive_month,archive_year)
{
	document.form_name_news_archive_select.archive_month_choose.value=archive_month;
	document.form_name_news_archive_select.archive_year_choose.value=archive_year;
	document.form_name_news_archive_select.goto_news_pages_value.value="";
	document.form_name_news_archive_select.action='../../news_news.php';
	document.form_name_news_archive_select.submit();
}
//------------------------------------------------------------------------------------------------>Go To Most viewed Page
function goto_news_archiv_select()
{//alert('fff');
	if(document.form_name_news_archive_select.na_date_selectbox.value=="")
		{
			document.getElementById('na_selct_div_err').innerHTML = "Please select news date.";
			document.form_name_news_archive_select.na_date_selectbox.focus();
			return false;
		}
	if(document.form_name_news_archive_select.na_month_selectbox.value=="")
		{
			document.getElementById('na_selct_div_err').innerHTML = "Please select news month.";
			document.form_name_news_archive_select.na_month_selectbox.focus();
			return false;
		}		
	if(document.form_name_news_archive_select.na_year_selectbox.value=="")
		{
			document.getElementById('na_selct_div_err').innerHTML = "Please select news year.";
			document.form_name_news_archive_select.na_year_selectbox.focus();
			return false;
		}		
		
	document.form_name_news_archive_select.archive_month_choose.value="";
	document.form_name_news_archive_select.archive_year_choose.value="";
	document.form_name_news_archive_select.goto_news_pages_value.value="1";
	document.form_name_news_archive_select.action='http://www.trademymotor.co.uk/News.html?newsDate='+document.form_name_news_archive_select.na_date_selectbox.value+"/"+document.form_name_news_archive_select.na_month_selectbox.value+"/"+document.form_name_news_archive_select.na_year_selectbox.value+'&Category='+document.getElementById('na_cat_selectbox').value;
	document.form_name_news_archive_select.submit();
}

//------------------------------------------------------------------------------------------------>Go TO News Pages
function goto_news_pages(page_value)
{
	document.form_name_news_archive_select.archive_month_choose.value="";
	document.form_name_news_archive_select.archive_year_choose.value="";
	document.form_name_news_archive_select.na_date_selectbox.value="";
	document.form_name_news_archive_select.na_month_selectbox.value="";
	document.form_name_news_archive_select.na_year_selectbox.value="";
	
	document.form_name_news_archive_select.goto_news_pages_value.value=page_value;
	FormName		= document.form_name_news_archive_select;
	FormName.action	= "news_news.php";
	FormName.submit();	
}

//------------------------------------------------------------------------------------------------>Go TO News Pages with categories
function goto_news_pages_with_categories(category)
{
	document.form_name_news_archive_select.archive_month_choose.value="";
	document.form_name_news_archive_select.archive_year_choose.value="";
	document.form_name_news_archive_select.na_date_selectbox.value="";
	document.form_name_news_archive_select.na_month_selectbox.value="";
	document.form_name_news_archive_select.na_year_selectbox.value="";
	
	document.form_name_news_archive_select.category.value=category;
	FormName		= document.form_name_news_archive_select;
	FormName.action	= "News.html";
	FormName.submit();	
}
//------------------------------------------------------------------------------------------------>


function goto_news_pages_with_categories1(category)
{
	
	document.form_name_news_archive_select1.category.value=category;
	FormName		= document.form_name_news_archive_select1;
	FormName.action	= "News.html";
	FormName.submit();	
	
	
}



