function Submit() {
	document.thisform.submit();
}

function GetPage(n) {
	document.thisform.page.value = n;
	Submit();
}

function GetCat(s) {
	document.thisform.cat.value = s;
	Submit();
}

function PopupPic(sPicURL) {
	window.open("popup.htm?"+sPicURL, "", "resizable=1,HEIGHT=100,WIDTH=200");
}

function WriteEmail(to,dm) {
	var tmp = window.location.href.split("/");
	var domain = tmp[2];
	if (dm) domain = dm;
	document.write("<a "+"href='"+"mail"+"to"+":"+to+"@"+domain+"'>");
}

function WriteEmailLink(to,txt,dm) {
	var tmp = window.location.href.split("/");
	var domain = tmp[2];
	if (dm) domain = dm;
	document.write("<a "+"href='"+"mail"+"to"+":"+to+"@"+domain+"'><b>"+txt+"</b></a>");
}

function EmailTo(to,dm,sb) {
	document.write("<a class='normal' "+"href='"+"mail"+"to"+":"+to+"@"+dm+"?subject="+sb+"'>");
}

function WriteSubjectEmail(to,sbj) {
	var tmp = window.location.href.split("/");
	var domain = tmp[2];
	document.write("<a "+"href='"+"mail"+"to"+":"+to+"@"+domain+"?subject="+sbj+"'>");
}

function WriteSubjectEmailLink(to,sbj,txt) {
	var tmp = window.location.href.split("/");
	var domain = tmp[2];
	document.write("<a "+"href='"+"mail"+"to"+":"+to+"@"+domain+"?subject="+sbj+"'><b>"+txt+"</b></a>");
}

function FixPNG() {
	var arVersion = navigator.appVersion.split("MSIE");
	var version = parseFloat(arVersion[1]);
	if ((version >= 5.5) && (version < 7) && (document.body.filters)) {
		for(var i=0; i<document.images.length; i++) {
			var img = document.images[i];
			var imgName = img.src.toUpperCase();
			if (img.src.indexOf('/Support/files/') == -1) {
			if (imgName.substring(imgName.length-3, imgName.length) == "PNG") {
				var imgID = (img.id) ? "id='" + img.id + "' " : "";
				var imgClass = (img.className) ? "class='" + img.className + "' " : "";
				var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' ";
				var imgStyle = "display:inline-block;" + img.style.cssText;
				if (img.align == "left") imgStyle = "float:left;" + imgStyle;
				if (img.align == "right") imgStyle = "float:right;" + imgStyle;
				if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle;
				var strNewHTML = "<span " + imgID + imgClass + imgTitle + " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";" + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader" + "(src=\'" + img.src + "\', sizingMethod='scale');\"></span>";
				img.outerHTML = strNewHTML;
				i--;
			}
			}
		}
	}
}

function OldFixPNG() {
	var arVersion = navigator.appVersion.split("MSIE");
	var version = parseFloat(arVersion[1]);
	if ((version >= 5.5) && (version < 7) && (document.body.filters)) {
	  for(var i=0; i<document.images.length; i++) {
		  var img = document.images[i];
			var imgName = img.src.toUpperCase();
			if (imgName.substring(imgName.length-3, imgName.length) == "PNG") {
				var imgSrc = img.src;
				img.src='';
				img.width = 1;
				img.height = 1;
				img.style.cssText = "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+imgSrc+"');";
			}
		}
	}
}