function swap(id, newsrc) {
	var theImage = locateImage(id);
	if (theImage) {
		theImage.src = newsrc;
	}
}
function locateImage(name) {
	var theImage = false;
	if (document.images) {
		theImage = document.images[name];
	}
	if (theImage) {
		return theImage;
	}
	return (false);
}

function win(desc)
{
	subscribe=window.open("","subscribe","width=500,height=300,top=0,left=0,titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no");
	subscribe.document.open();
	subscribe.document.write("<html><head><title>Химфармпрдукт</title></head><body><table width='100%' border='0' cellspacing='0' cellpadding='0'><tr><td align='center' valign='middle' style='font-family:Verdana;font-size:12px;'>");

	subscribe.document.write(desc);
	subscribe.document.write("</td></tr></table></body></html>");
	subscribe.document.close();
}