function popitup(call_file,type)
{
	newwindow=window.open('','name','height=200,width=200');
	var tmp = newwindow.document;
	tmp.write('<html><head><title>popup</title>');
	tmp.write('</head><body>');
	tmp.write('<p><a href="javascript:self.close()">close window</a></p>');
	if(type=="audio"){
		<!--//tmp.write('<EMBED src="'+call_file+'" autostart=true hidden=true>');//-->
		tmp.write('<a href="'+call_file+'">play</a>');
	}else{
		tmp.write('<img src="'+call_file+'" border="0">');
	}
	tmp.write('</body></html>');
	tmp.close();
}
function help(){
	var val = "help.html";
	infowindow = window.open(val,"displayWindow","menubar=yes,scrollbars=yes,status=yes,resizable=yes,width=390,height=420,screenX=100,screenY=100,top=100,left=100");
	infowindow.focus();
}