var newwindow;
	function openpopup(filename,w,h){
	newwindow=window.open(filename,"",'width='+w+',height='+h+',top=100,left=300')
	if (window.focus) {newwindow.focus()}
	}

