// JavaScript Document#
function modelesswin(){
	eval('window.open("","sitemap,scrollbars=1,statusbar=0")');
}

function goClear(){
	document.getElementById('trans').className='transpar';
	document.getElementById('trans').setAttribute("class", "transpar");
	document.getElementById('trans').setAttribute("className", "transpar");
}

function goSolid(){
	document.getElementById('trans').className='';
	document.getElementById('trans').setAttribute("class", "");
	document.getElementById('trans').setAttribute("className", "");
}
