function display_ss(pic,h,w) {
var image_array = new Image();
 image_array.src=pic;

var window_dimensions = "width=" + w + ",height=" + h;
new_window=window.open("","",window_dimensions);
new_window.document.writeln('<html>');
new_window.document.writeln('<head>');
new_window.document.writeln('<title>Скриншот');
new_window.document.writeln('<\/title>');
new_window.document.writeln('<\/head>');
new_window.document.writeln('<body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">');
new_window.document.writeln('<img src=" ' +image_array.src+'">');
new_window.document.writeln('<\/body>');
new_window.document.writeln('<\/html>');
new_window.document.close();
}
function perehod(p) {
	document.getElementById('perehodtop').action=p;
	document.getElementById('perehodtop').submit();
}
function perehodn(p) {
	document.getElementById('perehodtopn').action=p;
	document.getElementById('perehodtopn').submit();
}
