//change language
function change_lang(lang,path,shortURL,useIndex) {
	if (shortURL) {
		if (useIndex) destination = path+"index.php/"+lang;
		else destination = path+lang;
	} else {
		if (lang) destination = "?l="+lang;
	}
	if (destination) location.href = destination;
}

//search
function search(href) {
	var value=document.getElementById("search_s").value;
	if (value.length>0) {
	 	if (href) location.href = href+value;
	}
}

//re-load captcha
function newimage_security(path) {
	var currentTime = new Date();
   
	var i=document.getElementById('image_security');
	i.src=path+'img.security.php?fool='+currentTime.getTime();
}

//add to favorites
function CreateBookmarkLink(url, title) {
	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	} else if( window.external ) { // IE Favorite
		window.external.AddFavorite( url, title); }
	else if(window.opera && window.print) { // Opera Hotlist
		return true; 
	}
}


