//mOvr(object, background color, font color)
function mOvr(src,bgcol,fontcol){ 
	if (!src.contains(event.fromElement)){ 
		src.style.cursor = 'hand';
		if (bgcol !=null) { 
			src.bgColor = bgcol;
		}
		if (fontcol != null) {			
			src.children.tags('A')[0].style.color = fontcol; 
		}		 
	} 
} 
function mOut(src,bgcol,fontcol){ 
	if (!src.contains(event.toElement)){ 
		src.style.cursor = 'default'; 
		if (bgcol !=null) { 
			src.bgColor = bgcol;
		}
		if (fontcol != null) {			
			src.children.tags('A')[0].style.color = fontcol; 
		}			
	} 
} 
function mClk(src){ 
	if(event.srcElement.tagName=='TD')
    	src.children.tags('A')[0].click();
	
}

var bookmarkurl="http://www.krsi.net"+window.location.pathname;
var bookmarktitle="Radio Sedaye Iran"

function addbookmark(){
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}

if (top != self) {               
top.location = location
}

function confirmRemove(theform)
	{
		var agree=confirm("Are you sure you want to remove this link from your favorite menu?");
		if (agree)
			document.forms(theform).submit();
		else
			return; 
	}	
