function popup(filename){
window.open(filename, "","height=475,width=616,top=10,left=10,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,titlebar=yes,toolbar=yes,directories=no");
}
function pop(filename){
window.open(filename, "","height=300,width=300,top=10,left=10,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,titlebar=yes,toolbar=yes,directories=no");
}
function setfocus() {
	document.input.message.focus();
}

function wopen(wurl,wname,w,h) {
window.open(wurl,wname,'width='+w+',height='+h+',toolbar=no,menubar=no,location=no,scrollbars=no,derictories=no,status=no,resizable=yes,top=10,left=10');
}

var windowNote;

function showPic(no,w,h) {
  windowNote = window.open('','_blank','toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes,copyhistory=no,width='+w+',height='+h+',top=10,left=10');
  text = '<html><head><title>' + no + '</title>';
  text += '</head><body bgcolor=#CFF3FB text=#000000 style="font-family: Verdana;font-size: 9pt;" marginwidth=0 marginheight=0 leftmargin=0 topmargin=8>';
  text += '<table border=0 cellpadding=0 cellspacing=0 align=center><tr align=center valign=middle><td>';
  text += '<img src="img/showpic/'+no+'" border=0>';
  text += '<div align=right><form style="margin-top: 5pt;margin-bottom: 0pt"><input type=button value="закрыть это окно" onClick="self.close()"></form></div>';
  text += '</td></tr></table>';
  text += '</body></html>';
  windowNote.document.write(text);
  windowNote.focus();
  windowNote.document.close();
  return false;
}
