function showBigImage(image, width, height, title)
{
	popupWin = window.open('/scripts/image.php?image=/'+image+'&w='+width+'&h='+height+'&title='+title,'','width='+width+', height='+height+', left=100, top=10, directories=no, location=no, menubar=no, resizable=yes, scrollbars=no, status=no, toolbar=no');
//	popupWin.focus(); // глючит в ие6 (не понял, вроде работает без нее)
}

function clearLetter(id) {
	//return string.replace(/[^0-9]/g, "");
	var string = $("#"+id).val();
	string = string.replace(/[^0-9]/g, "");
	//alert($("#"+id).val());
	$("#"+id).val(string);
}
