	
function show(link, size) {
	xx = window.open("","link","menubar=0, toolbar=0, location=0, directories=0, status=0, scrollbars=0, resizable=0, width= " + size + ", height=" + size);
	out = "<html><head><title>Просмотр</title></head><body style='margin: 0 0 0 0;'><table cellpadding=0 cellspacing=0><tr><td><a href='javascript:window.close();'><img src='" + link + "' border=0 alt='закрыть'></a></td></tr></table></body></html>";
	xx.document.write(out);
	xx.focus();
	}
	
function html(link, w, h) {
	xx = window.open( link, "link", "menubar=1, toolbar=0, location=0, directories=0, status=1, scrollbars=1, resizable=1, width= " + w + ", height=" + h);
	xx.document.write;
	xx.focus();
	}
	
function img(link, w, h) {
	newWindow = window.open(link,'link', "top=30, left=30, menubar=no, toolbar=no, location=no, directories=no, status=no, scrollbars=no, resizable=no, width= " + w + ", height="+ h);
	newWindow.focus();
	}
	
function doIt(){
	document.getElementById('blink').style.visibility =  (document.getElementById('blink').style.visibility == "hidden") ? "visible" : "hidden";
	}

function Knipper(){
	setInterval('doIt()', 700);
	}
	
