// JavaScript Document
<!--
function openPopupWin(sURL, sParametrs){
	window.open(sURL, "displayWindow", sParametrs);
}

function openPopupImg(sURL){
	window.open(sURL, "displayWindow", "width=600,height=450");
}
//-->
