function mOvr(src,clrOver){ 
	if (!src.contains(event.fromElement)){ 
		src.style.cursor = 'hand'; 
		src.bgColor = clrOver; 
	} 
} 
function mOut(src,clrIn){ 
	if (!src.contains(event.toElement)){ 
		src.style.cursor = 'default'; 
		src.bgColor = clrIn; 
	} 
} 
function mClk(src){ 
	if(event.srcElement.tagName=='TD')
		src.children.tags('A')[0].click();
}
function StatusText(){
	window.defaultStatus='We Feed The World With Rice';
}
function OpenNewWindow(URL) {
	var gWidth, gHeight, WindowLink;
	//gWidth = screen.width - (screen.width/7);
	gWidth = 635;
	gHeight = screen.height - (screen.height/8);
	WindowLink = window.open(URL, "window_print","toolbar=no, location=no, status=no, menubar=no, resizable=yes,scrollbars=yes,width=" + gWidth + ", height=" + gHeight + ", left=0, top=0");
	WindowLink.focus();
}