function addBookmark(url,title){
	if (document.all){
		if (url==null) url=window.location;
		if (title==null) title=document.title;
			window.external.AddFavorite(url,title);
	}
}

function onFocus(o, defaultValue){
	if(o!=null){
		if (o.value == defaultValue)
			o.value="";
		else
			o.focus();
	}
}

function onBlur(o, defaultValue){
	if(o!=null){
		if (o.value == "")
			o.value=defaultValue;
	}
}	

function popupRecommend(width,height,localized){
	var s_url="http://www.sanikal.com/pages/recommend.aspx";
	if (width==null) width=500;
	if (height==null) height=400;
	if (localized==null || localized) 
		s_url+="?__language="+__language;		
		window.open(s_url,"popup","location=no,resizable=0,status=no,scrollbars=no,scrolling=0,height="+height+",width="+width);
}