
window.attachEvent('onload',mmwidth);
window.attachEvent('onresize',mmwidth);
function mmwidth(){
 document.getElementById('wrap').style.width = ((document.documentElement.clientWidth || document.body.clientWidth) < 1024) ? '1000px' : ((document.body.clientWidth > 1451) ? '1450px' : '100%');
}


function flashMeTD(eSrc,sColor) {
     eSrc.style.background=sColor;
	 	  }
function flashMe(eSrc,sColor) {
     eSrc.style.color=sColor;
	 	  }
function AddTags(Tag,Tag2)
	{
		document.forma.text.focus();
		sel = document.selection.createRange();
		sel.text = Tag+sel.text+Tag2;
		document.forma.content.focus();
	}
function setHome(a)
	{
		a.style.behavior='url(#default#homepage)';
		a.setHomePage('http://www.don-arts.org');
		return false
	}

  

//Каталог
function confirmDelete(text,url)
{
	temp = window.confirm(text);
	if (temp) //delete
	{
		window.location=url;
	}
}
function open_window(link,w,h) //opens new window
{
	var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=yes,scrollbars=yes";
	wishWin = window.open(link,'wishWin',win);
}

function validate_custinfo() //validate customer information
	{
		if (document.custinfo_form.first_name.value=="" || document.custinfo_form.last_name.value=="")
		{
			alert("Пожалуйста, введите Ваши ФИО");
			return false;
		}
		if (document.custinfo_form.email.value=="")
		{
			alert("Пожалуйста, введите email");
			return false;
		}
		if (document.custinfo_form.country.value=="")
		{
			alert("Пожалуйста, введите страну");
			return false;
		}
		if (document.custinfo_form.state.value=="")
		{
			alert("Пожалуйста, введите область");
			return false;
		}
		if (document.custinfo_form.zip.value=="")
		{
			alert("Пожалуйста, введите почтовый индекс");
			return false;
		}
		if (document.custinfo_form.city.value=="")
		{
			alert("Пожалуйста, введите название города");
			return false;
		}


		return true;
	}

