function openfull(theURL,winName,features,w,h) { //v2.0
	newwin=window.open(theURL,winName,features,w,h);
	newwin.moveTo(0,0);
	newwin.resizeTo(screen.availWidth,screen.availHeight)
	newwin.focus()
}

function showhide(id){
	if (document.getElementById){
		obj = document.getElementById(id);
		//alert(obj);
		if (obj.style.display == "none"){
			obj.style.display = "";
		} else {
			obj.style.display = "none";
		}
	}
} 

var urlAddress = "http://www.flashbike83.com";
var pageName = "Flash Bike";
function favoris() {
	if ( navigator.appName != 'Microsoft Internet Explorer' )	{
		window.sidebar.addPanel(pageName,urlAddress,"");
	} else {
		window.external.AddFavorite(urlAddress,pageName);
	} 
}


