function LoadWin(imgPath, imgHeight, imgWidth, imgname){
	MyWin = open("","MW","width=" + imgWidth + ",height=" + imgHeight + ",scrollbars=no,resizable=no,menubar=no,location=no,status=no,toolbar=no");
	MyWin.document.writeln("<\HTML>");
	MyWin.document.writeln("<\HEAD>");
	MyWin.document.writeln("<\SCRIPT LANGUAGE='JavaScript'>");
	MyWin.document.writeln("this.onblur=new Function('close()');")
	MyWin.document.writeln("function GetFocus(){");
	MyWin.document.writeln("window.focus();}");
	MyWin.document.writeln("<\/SCRIPT>");
	MyWin.document.writeln("<\TITLE>Палитра цветов CORIAN&reg;<\/TITLE><\/HEAD>");
	MyWin.document.writeln("<BODY TOPMARGIN=20 rightmargin=0 bgcolor=ffffff text=425988 LEFTMARGIN=32 bottommargin=0 MARGINWIDTH=0 marginheight=0 onLoad='window.focus();'>");
	MyWin.document.writeln("<CENTER><IMG SRC='" + imgPath +"'><p><strong><div style='font-family: Verdana; font-size: 8pt;'>"+imgname+"</div></strong></p></CENTER>");
	MyWin.document.writeln("<\/BODY><\/HTML>");
	MyWin.document.close();
}