
function git(adres) {
	document.location.href = adres;
}


function imposeMaxLength(Object, MaxLen) {
	return (Object.value.length <= MaxLen);
}


function addfav() {

	title = 'TuskonTrade.com';
	url = 'http://www.tuskontrade.com';

	// Mozilla Firefox Bookmark
	if (window.sidebar) {
	window.sidebar.addPanel(title, url,"");
	}

	// IE Favorite
	else if(window.external) {
	window.external.AddFavorite(url, title);
	}

	else {
	window.external.AddFavorite(url, title);
	}
}




function make_homepage(hangi) {

	if (document.all) {
		//hangi.style.behavior = 'url(#default#homepage)';
		hangi.setHomePage('http://www.tuskontrade.com');
	}

	else {
		alert('Not Supported');
	}

}

