function popup(url) {
	var x = window.open(url, '_blank', 'toolbar=0,addressbar=0,left=100,top=100,startx=0,starty=0,width=200,height=300');
}

function popup2(url,width,height) {
	var x = window.open(url, '_blank', 'toolbar=0,scrollbars=1,addressbar=0,left=100,top=100,startx=100,starty=100,width='+width+',height='+height+'');
}

function hideInfobox() {
	var infobox = document.getElementById('infobox');
	infobox.style.visibility = 'hidden';
}

function OpenWindowTEZ(filename) {
	var x = window.open(filename, "WINDOWNAME_TEZ", 'toolbar=no,status=no,location=no,menubar=no,directories=no,scrollbars=no,resize=no,screenX=0,screenY=0,left=80,top=80,width=500,height=570');
}
