<!--
function uniqueId(input)
{
	re = /[A-Za-z0-9]/g;
	myArray = input.match(re);
	output = "";
	for (i=0;i<myArray.length;i++) {
		output = output + myArray[i];
	}
	return output;
}

function replaceSome(tt)
{
	myRe0 = new RegExp('href="[a-z0-9/\_\:\-]+\.html"', 'g');
	midStr0 = tt.replace(myRe0, "href='#' onclick='return false;'");
	myRe1 = new RegExp('cnt_top', 'g');
	midStr1 = midStr0.replace(myRe1, "xyz");
	myRe2 = new RegExp('href=', 'g');
	midStr2 = midStr1.replace(myRe2, "xyz=");
	myRe3 = new RegExp('gotop', 'g');
	midStr3 = midStr2.replace(myRe3, "null");
	return midStr3;
}

function prnWin()
{
	if (!document.layers)
    {
		pageTitle = document.title;
		whatToPrint = document.getElementById("txtfield");
//		textHeader =  document.getElementById("content_header");
		innerCon = whatToPrint.innerHTML;
		printCon = replaceSome(innerCon);
		s = 'resizable=no,menubar=yes,location=no,toolbar=yes,status=no,scrollbars=yes,width=' + 700 + ',height=' + 600;
	    WindowName = uniqueId(window.location.href);
		var secWnd = window.open('', WindowName, s);
		with (secWnd)
        {
			document.write("<HTML>\n<head>\n<title>" + pageTitle + "</title>\n</head>\n");
			document.write("<body>\n");
			document.write('<table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td><img src="/images/logo.gif" alt="" width="137" height="44" border="0"></td><td width="100%" align="right"><b>e-mail: info@biotec.ru</b></td></tr></table><br>&nbsp;<br>\n');
//			if (textHeader != null) document.write('<h1 style="font-size: 16px; padding-left: 15px;">' + textHeader.innerHTML + '</h1>');
			document.write('<div id="txtfield">\n');
			document.write(printCon);
			document.write('</div>\n');
			document.write("\n</body>\n");
			document.write("</html>");
			document.close();
			focus();
		}
	}
}


function ShowFlash ( id, width, height )
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="' + width + '" height="' + height + '" title="Biotec">');
	document.write('<param name="movie" value="/flash/' + id + '.swf"/>');
	document.write('<param name="quality" value="high" />');
	document.write('<embed src="/flash/' + id + '.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + width + '" height="' + height + '"></embed>');
	document.write('</object>');
}

// -->
