function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
	var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
	if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
	
function ToggleNewsDisplay(divname, color){
	if (document.getElementById(divname).style.display == "none") {
		document.getElementById(divname).style.display = "block";
		document.getElementById(divname+'Image').src="http://www.yiela.com/images/arrow_down_"+color+".gif";
	} else {
		document.getElementById(divname).style.display = "none";
		document.getElementById(divname+'Image').src="http://www.yiela.com/images/arrow_right_"+color+".gif";
	}
}	

function ToggleNewsDisplay203(divname){
	if (document.getElementById(divname).style.display == "none") {
		document.getElementById(divname).style.display = "block";
		document.getElementById(divname+'Image').src="http://www.yiela.com/images/images2.0.3/icon_minus.gif";
	} else {
		document.getElementById(divname).style.display = "none";
		document.getElementById(divname+'Image').src="http://www.yiela.com/images/images2.0.3/icon_plus.gif";
	}
}	

function ToggleDisplay(divname){
	if (document.getElementById(divname).style.display == "none") {
		document.getElementById(divname).style.display = "block";
	} else {
		document.getElementById(divname).style.display = "none";
	}
}
function ToggleDisplayTable(divname){
	if (document.getElementById(divname).style.display == "none") {
		document.getElementById(divname).style.display = "table-row";
	} else {
		document.getElementById(divname).style.display = "none";
	}
}
function SendNews(base_url, news_id) {
	url = base_url + 'portal/sendnews/'+news_id;
	window.open(url,'popupsendnews','status=0,height=800,width=600,resizable=0,fullscreen=0,location=0,scrollbars=1,left=1,top=1');	
}
function AddNews(base_url, community_url) {
	url = base_url + 'portal/addnews/'+community_url;
	window.open(url,'popupaddnews','status=0,height=800,width=600,resizable=0,fullscreen=0,location=0,scrollbars=1,left=1,top=1');	
}

function submit_newsindex_date(base_url, date, category) {	
	var day  = date.substr(0,2);
	var yr   = date.substr(7,4);			
	var mon  = date.substr(3,3);
	if (mon=='Jan') mon=1; else 
	if (mon=='Feb') mon=2; else 
	if (mon=='Mar') mon=3; else 
	if (mon=='Apr') mon=4; else 
	if (mon=='May') mon=5; else 
	if (mon=='Jun') mon=6; else 
	if (mon=='Jul') mon=7; else 
	if (mon=='Aug') mon=8; else 
	if (mon=='Sep') mon=9; else 
	if (mon=='Oct') mon=10; else 
	if (mon=='Nov') mon=11; else 
	if (mon=='Dec') mon=12;		
	
	//alert(day+' '+mon+' '+yr);
	window.location = base_url+'portal/newsindex/'+yr+'/'+mon+'/'+day+'/'+category+'/';
	return false;
}
