function newWin(nameImg,width,height){
	LeftPosition = (screen.width) ? (screen.width-width)/2 : 0;
 	TopPosition = (screen.height) ? (screen.height-height)/2 : 0;
	win=open("","",'height='+height+',width='+width+',top='+TopPosition+',left='+LeftPosition);
	win.document.write('<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0><table cellpadding=0 cellspacing=0 border=0><tr><td><img src="'+nameImg+'" style="cursor:hand;" onclick="window.close();" alt=""></td></tr></table></body></html>');
  	win.document.close();
}

function newWinHtml(urlHtml,width,height){
	LeftPosition = (screen.width) ? (screen.width-width)/2 : 0;
 	TopPosition = (screen.height) ? (screen.height-height)/2 : 0;
	win=open(urlHtml,"",'height='+height+',width='+width+',top='+TopPosition+',left='+LeftPosition);
}

function open_window(link,w,h) {
 LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
 TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
 var win = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',menubar=no,location=no,scrollbars=yes,resizable=yes';
 newWin = window.open(link,'newWin'+w+h,win);
}

function procSubscribe(frm, proc, w, h) {
	ofrm = document.getElementById(frm);
	window.open('', frm, 'width='+w+',height='+h);
	eval("ofrm.subscribe_type.value="+proc);
	ofrm.submit();
}

function procFocus(ob, txt) {
	if (ob.value == txt) {
		ob.value = '';
	}	
}

function procBlur(ob, txt) {
	if (ob.value == '') {
		ob.value = txt;
	}	
}

document.onkeydown = register;

function register(e) {
	if (!e) e = window.event;
	var k = e.keyCode;
	if (e.ctrlKey) {
		var tagName = (e.target || e.srcElement).tagName;
		if (tagName != 'INPUT' && tagName != 'TEXTAREA') {
			var d;
			if (k == 37) {
				d = $('#previous_page');
			}
			if (k == 39) {
				d = $('#next_page');
			}
			if (d) location.href = d.attr('href');
		}
	}
}

/* xajax */	
	
	try { if (undefined == xajax.config) xajax.config = {}; } catch (e) { xajax = {}; xajax.config = {}; };
	xajax.config.requestURI = "/procajax.php";
	xajax.config.statusMessages = false;
	xajax.config.waitCursor = true;
	xajax.config.version = "xajax 0.5 rc1";
	xajax.config.legacy = false;
	xajax.config.defaultMode = "asynchronous";
	xajax.config.defaultMethod = "POST";
	
	xajax_vote = function() {
		return xajax.request( { xjxfun: 'vote' }, { parameters: arguments } );
	}

	xajax_voteResult = function() {
		return xajax.request( { xjxfun: 'voteResult' }, { parameters: arguments } );
	}
	
	xajax_addToCart = function() {
		return xajax.request( { xjxfun: 'addToCart' }, { parameters: arguments } );
	}
	
/* end xajax */

function checkForm(form) {
	// Заранее объявим необходимые переменные
	var el, // Сам элемент
	elName, // Имя элемента формы
	value, // Значение
	type; // Атрибут type для input-ов
	// Массив списка ошибок, по дефолту пустой
	var errorList = [];
	// Хэш с текстом ошибок (ключ - ID ошибки)
	var errorText = {
	1 : "Не заполнено поле 'Имя'",
	2 : "Не заполнено поле 'E-mail'",
	3 : "Не заполнено поле 'Телефон'",
	4 : "Неизвестная ошибка"
	}
	// Получаем семейство всех элементов формы
	// Проходимся по ним в цикле
	//form = document.getElementById(frm);
	for (var i = 0; i < form.elements.length; i++) {
	el = form.elements[i];
	elName = el.nodeName.toLowerCase();
	value = el.value;
	if (elName == "input") { // INPUT
	// Определяем тип input-а
	type = el.type.toLowerCase();
	// Разбираем все инпуты по типам и обрабатываем содержимое
	switch (type) {
	case "text" :
	if (el.title != "" && value == "") errorList.push("Не заполнено поле '"+el.title+"'");
	break;
	case "file" :
	//if (value == "") errorList.push(3);
	break;
	case "checkbox" :
	// Ничего не делаем, хотя можем
	break;
	case "radio" :
	// Ничего не делаем, хотя можем
	break;
	default :
	// Сюда попадают input-ы, которые не требуют обработки
	// type = hidden, submit, button, image
	break;
	}
	} else if (el.title != "" && elName == "textarea") { // TEXTAREA
	if (value == "") errorList.push("Не заполнено поле '"+el.title+"'");
	} else if (el.title != "" && elName == "select") { // SELECT
	if (value == 0) errorList.push("Не выбран элемент в поле '"+el.title+"'");
	} else {
	// Обнаружен неизвестный элемент ;)
	}
	}
	// Финальная стадия
	// Если массив ошибок пуст - возвращаем true
	if (!errorList.length) {
		return true;
	}
	// Если есть ошибки - формируем сообщение, выовдим alert
	// и возвращаем false
	var errorMsg = "При заполнении формы допущены следующие ошибки:\n\n";
	for (i = 0; i < errorList.length; i++) {
	errorMsg += errorList[i] + "\n";
	}
	alert(errorMsg);
	return false;
}

function setPosition(name) {
	var x = $(window).width();
    var y = $(window).height();
	
	var top = $(document).scrollTop()-50;
	var left = $(document).scrollLeft();
	
	var width = $("#"+name).width();
	var height = $("#"+name).height();
	
	var halfX = x /2;
	var halfWidth = width / 2;
	var leftPad = (left + halfX) - halfWidth;

	var halfY = y /2;
	var halfHeight = height / 2;
	var topPad = (top + halfY) - halfHeight;

	$("#"+name).css('top', topPad);
	$("#"+name).css('left', leftPad);	
}

function popUp(name) { //default name = pop_up 
	setPosition(name);
	$.dimScreen(500, 0.4, function() {$('#'+name).fadeIn('fast')});
}

var closePopupTimer;
var mdelay = 2000;

function closePopUpTime(time, name) {
	if (time == 0) {
		time = mdelay;
	}
	closePopupTimer = setTimeout('closePopUp(\''+name+'\')', time);
}

function closePopUp(name) {  // default name = pop_up
	clearTimeout(closePopupTimer);
	$('#'+name).css('display', 'none');
	$.dimScreenStop();
	return false;
}

$(window).resize(function(){
	$('#__dimScreen').css({
            height: $(document).height() + 'px'
            ,width: $(document).width() + 'px'
    });
	if ($('#cart_add').css('display') != 'none')
		setPosition('cart_add');
});

var m = 0;
var delay = 5000;

var delay_client1 = 70000;
var delay_client2 = 24000;

$(document).ready(function(){
	
    var botBoxWidth = $("#botScrollbox").width();
	var botBoxWidth2 = $("#items_menu").width();
	$("#botScrollbox").stop();
	$('#botScrollbox').scrollTo( 0 );
	$('#botScrollbox').scrollTo(botBoxWidth2, delay_client1, { easing:'linear'});
	$("#botScrollbox").mouseover(function(e){
		var botMouse = e.clientX;
		var botScroll = $("#botScrollbox").scrollLeft();
		var botHalfWidth = botBoxWidth / 2;
		
		//alert(botScroll);
		
		if (botMouse > botHalfWidth)
		{	
			if (botScroll > 0) {
				real_delay = delay_client2 * (botBoxWidth2-botScroll) / botBoxWidth2;
			} else {
				real_delay = delay_client2
			}
			$("#botScrollbox").stop();
			$('#botScrollbox').scrollTo(botBoxWidth2, real_delay, { easing:'linear'});
		} else {
			if (botScroll > 0) {
				real_delay = delay_client2 * botScroll / botBoxWidth2;
				$("#botScrollbox").stop();
				$('#botScrollbox').scrollTo(0, real_delay, { easing:'linear'});
			}
		}
		
		
		

	});
	
	$("#botScrollbox").mouseout(function(){
			var botScroll = $("#botScrollbox").scrollLeft();	
			if (botScroll > 0) {
				real_delay = delay_client1 * (botBoxWidth2-botScroll) / botBoxWidth2;
			} else {
				real_delay = delay_client1
			}
			$("#botScrollbox").stop();
			$('#botScrollbox').scrollTo(botBoxWidth2, real_delay, { easing:'linear'});
		});
		
		$("#botScrollbox").mousemove(function(e){
			
			var botMouse = e.clientX;
			var botScroll = $("#botScrollbox").scrollLeft();
			var botHalfWidth = botBoxWidth / 2;
		
			//alert(botScroll);
		
			if (botMouse > botHalfWidth)
			{	
				if (botScroll > 0) {
					real_delay = delay_client2 * (botBoxWidth2-botScroll) / botBoxWidth2;
				} else {
					real_delay = delay_client2
				}
				$("#botScrollbox").stop();
				$('#botScrollbox').scrollTo(botBoxWidth2, real_delay, { easing:'linear'});
			} else {
				if (botScroll > 0) {
					real_delay = delay_client2 * botScroll / botBoxWidth2;
					$("#botScrollbox").stop();
					$('#botScrollbox').scrollTo(0, real_delay, { easing:'linear'});
				}
			}
		});
	
	/* scrolling */
	var delay = 1000;
	var sup = 5;
	
	$('img.service-item').mouseover(function(e){
		if ($(this).attr('title')) {
			$(this).css('cursor', 'hand');
			var pos = $(this).position();
			//alert(pos.left+'_'+pos.top);
			var x = $(window).width();
			$('#dpop_content').html($(this).attr('title'));
			$('#dpop').css('display', 'block');
			$('#dpop').css('left', ((x-990)/2)+ pos.left-(($('#dpop').width()-$(this).width())/2));
			$('#dpop').css('top', pos.top-$('#dpop').height()+50);
		}
	});

	$('img.service-item').mouseout(function(e){
		$('#dpop').css('display', 'none');
		$(this).css('cursor', 'default');
	});

});



