<!--

function show(tbodyid,dis) {
  document.getElementById(tbodyid).style.display = dis;
}


function bookmarksite(title,url){
if (window.sidebar) // firefox
	window.sidebar.addPanel(title, url, "");
else if(window.opera && window.print){ // opera
	var elem = document.createElement('a');
	elem.setAttribute('href',url);
	elem.setAttribute('title',title);
	elem.setAttribute('rel','sidebar');
	elem.click();
} 
else if(document.all)// ie
	window.external.AddFavorite(url, title);
}


function page_width() {
	if (parseInt(navigator.appVersion)>3) {
		if (navigator.appName=="Netscape") {
			docwidth = window.innerWidth;
		}
		if (navigator.appName.indexOf("Microsoft")!=-1) {
			docwidth = document.body.offsetWidth;
		}
	}
	docwidth = docwidth - 26;
	crop_img.style.width = docwidth + 'px';
}


function page_height(tbodyid2) {
	docheight = '100%';
	if (typeof document.height!= 'undefined') {
		docheight = document.height;
	} else if (document.compatMode && document.compatMode!= 'BackCompat' && document.documentElement.scrollheight!= undefined) {
		docheight = document.documentElement.scrollheight;
	} else if (document.body && typeof document.body.scrollheight!= 'undefined') {
		docheight = document.body.scrollheight;
	} else {
		docheight = document.body.scrollHeight;
	}
	document.getElementById(tbodyid2).style.height = docheight + 'px';
}

//-->