﻿
  
  
  
  function createCookie(name,value,days) {
	if (days) {
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	}
	else var expires = "";
	document.cookie = name+"="+value+expires+"; path=/;";
}
function readCookie(name) {
	var nameEQ = name + "=";
	var ca = document.cookie.split(';');
	for(var i=0;i < ca.length;i++) {
		var c = ca[i];
		while (c.charAt(0)==' ') c = c.substring(1,c.length);
		if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
	}
	return null;

}
function eraseCookie(name) {
	if ( readCookie( name ) )
	{	    
	     document.cookie = name + "=" +";path=/;expires=Thu, 01-Jan-1900 00:00:01 GMT";
	}
}
  
  function ShowSearch(id_)
  {  
    keyx = document.getElementById('txttext').value;
    if(keyx=='')
    {
        alert(hl_leftmenu_key);
        document.getElementById('txttext').focus();
        return false;
    } 
    else
    {   
        document.location.href='news.aspx?langid='+id_+'&key='+keyx;
    }
  }
 function SendMail(id_)
 {
    keyx = document.getElementById('txtwebsite').value;
    if(keyx=='')
    {
        alert(hl_leftmenu_email);
        document.getElementById('txtwebsite').focus();
        return false;
    } 
    else
    {   
        show_data_post('mail.aspx?e='+keyx+'langid='+id_);
    }
    
 }
 function ShowLang(id_)
 {
      top.location.href='http://songcongtea.com/index.aspx?langid='+id_;
 }
