//pop up the window in center	
function popup(url, width,height){
	if(window.innerWidth){
		LeftPosition =(window.innerWidth-width)/2;
		TopPosition =((window.innerHeight-height)/4)-50;
	}else{
		LeftPosition =(parseInt(window.screen.width)- width)/2;
		TopPosition=((parseInt(window.screen.height)-height)/2)-50;	
	}
		
	attr = 'toolbar=no, resizable=yes,scrollbars=yes,width=' + width + ',height=' +
	height + ',screenX=300,screenY=200,left=' + LeftPosition + ',top=' +
	TopPosition + '';
	
	window.open(url, '', attr); 
}

function vbarlinks(){
			document.write('<div class="vbarlinks">');
			document.write('<a href="theheat.htm">&raquo; ?T????????</a>');
			document.write('</div>');
}


function vbarlinks2(){
			document.write('<div class="vbarlinks">');
			document.write('<a href="../theheat.htm">&raquo; ?T????????</a>');
			document.write('</div>');
}


function goTo(url){
	window.location=url;
}