$(document).ready(function(){	$('.video').append('<span class="play"/>');	$('.video').click(function() {		var href = this.href;		$.fancybox({			'autoScale' : false,			'transitionIn' : 'none',			'transitionOut' : 'none',			'width' : 640,			'height' : 480,			'href' : '/i/VideoPlayer.swf',			'type' : 'swf',			'swf' : {		   		'wmode' : 'transparent',		   		'allowfullscreen': 'true',		   		'flashvars' : 'url='+href			}				});		return false;	});});function sendformOnline(){	if(validateForm() === true)	{		link = $('#formOnline').attr('action');		f = $('#formOnline :hidden, #formOnline :text, #formOnline :input:checked, #formOnline select, #formOnline textarea');		$.post(link, f, function(data){			if(data != '')			{				errorMessage(data)			}else			{				$('#techsupport').html('<p class="mess" style="position: absolute; top: 50%; left: 50%; text-align: center; width: 300px; height: 60px; margin-left: -150px; margin-top: -30px;">Спасибо, Ваша заявка принята.<br/><br><button onclick="$(\'#fancy_outer\').hide(); $(\'#fancy_overlay\').hide();" style="margin: 0pt;">Закрыть</button></p>');				cartForm();			}		});	}}function validateForm(){	var text = '';	var t = null;	$('div#error').hide().html();	if($('select#city :selected').val() == 0)	text += '<li>Выберите регион</li>';	if($('input#name').val() == '')	text += '<li>Введите контактное лицо</li>';	if($('input#company').val() == '')	text += '<li>Введите организация</li>';	if($('input#email').val() == '')	{		text += '<li>Введите адрес электронной почты</li>';	}else if(!/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/.test($('input#email').val())){		text += '<li>Неверный адрес электронной почты</li>';		}	if($('input#phone').val() == 0)	{		text += '<li>Введите контактный телефон</li>';	}else if(!/^([0-9\)\(\-\s]+)$/.test($('input#phone').val()))	{		text += '<li>Неверный формат телефона</li>';	}	if($('input#code').val() == 0)	text += '<li>Введите защитный код</li>';	if(text != '')	{		errorMessage(text);		return false;	}else	{		return true;	}	}function validateFormReg(){	var text = '';	var t = null;	$('div#error').hide().html();	if($('input#name').val() == '')	text += '<li>Введите контактное лицо</li>';	if($('input#company').val() == '')	text += '<li>Введите организация</li>';	if($('input#email').val() == '')	{		text += '<li>Введите адрес электронной почты</li>';	}else if(!/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/.test($('input#email').val())){		text += '<li>Неверный адрес электронной почты</li>';		}	if($('input#phone').val() == 0)	{		text += '<li>Введите контактный телефон</li>';	}else if(!/^([0-9\)\(\-\s]+)$/.test($('input#phone').val()))	{		text += '<li>Неверный формат телефона</li>';	}	if($('input#code').val() == 0)	text += '<li>Введите защитный код</li>';	if(text != '')	{		errorMessage(text);		return false;	}else	{		return true;	}	}function errorMessage(text){	$('div#error').html('<ul>'+text+'</ul>');	w = (500 - 222)/2;	h = (530 - 172)/2;	$('div#error').css({'left':w, 'top':h}).show().click(function(){$(this).hide()});	clearTimeout(t);	var t=setTimeout("$('div#error').fadeOut('5000')",2000);}
