// JavaScript Document
function OpenWin(page, w, h)
{
	var width = w;
	var height = h;
	var left = (screen.width - width)/2;
	var top = (screen.height - height)/2;
	var URLStr = page;
	
	popUpWin = window.open(URLStr,'popUpWin','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top+'');
}

function view(showhich){
	var isdisplay = document.getElementById('content' + showhich).style.display
	for(i = 1; i < 9; i++){
		document.getElementById('content' + i).style.display = 'none'
	}
	if(showhich != '' && isdisplay == 'none'){
		document.getElementById('content' + showhich).style.display = ''
	}
}
