function showTime(div,flag){
var showMe = (document.getElementById(div).style.display!=flag)?'':'none';
document.getElementById(div).style.display = showMe
}

var newwindow;
function openit(url)
{
	newwindow=window.open(url,'_blank','toolbar=yes,location=yes,menubar=yes,scrollbars=yes,resizable=yes');
	if (window.focus) {newwindow.focus()}
}
function openitbox(url,width,height)
{
if (height == null) {
height = '500';
} 
	newwindow=window.open(url,'_blank','toolbar=no,location=no,menubar=no,scrollbars=yes,resizable=yes,height='+height+',width='+width);
	if (window.focus) {newwindow.focus()}
}