// JavaScript Document

function go_url(gostr){
	window.location=wwwsite+gostr;
}

function open_fullscreen(url){

	if (navigator.appName == "Microsoft Internet Explorer"){ // better be ie6 at least
	fullscr_window=window.open(wwwsite+url, 'fullscr_window', 'fullscreen=yes, scrollbars=yes, resizable=yes').focus();
	}
	else { // i.e. if Firefox
	fullscr_window=window.open(wwwsite+url, 'fullscr_window', 'width=' + (screen.width-5) + ',height=' + (screen.height-30) + ', scrollbars=yes, resizable=yes, ').focus();
	}
/*
	fullscr_window=window.open(site+url,'fullscr_window','scrollbars=0');
	fullscr_window.focus();*/
}


