﻿//
//
//
function show_dealers_login() {
	document.getElementById('dealers_login').style.display = 'block';
	document.getElementById('dealers_login_close').style.display = 'block';
}

function hide_dealers_login() {
	document.getElementById('dealers_login').style.display = 'none';
	document.getElementById('dealers_login_close').style.display = 'none';
}

//
// генерируем случайное число
//
function get_random () {
	var min_random = 0;
	var max_random = 10000;
	max_random++;
	var range = max_random - min_random;
	return Math.floor(Math.random()*range) + min_random;
}

//
//
//
function isBlank(sName, sText) {
	if (sName.value == "") {
		alert(sText);
		sName.focus();
		return false;
	} else {
		return true;
	}
}

function CheckEmailFormat( email )
{
	var s = '[A-Za-z0-9][-\\w]*(\\.[A-Za-z0-9][-\\w]*)*'
	var re = new RegExp( '^'+s+'@'+s+'\\.[a-zA-Z]{2,4}$')
	email = email.replace( new RegExp('/\(.*?\)/'), '' )
	return re.test(email)
}

//
//
//
var ie = (document.all)? true : false
var nn6 = (!ie && document.getElementById)? true : false
var nn4 = (document.layers)? true : false

function popupWin(name, uri, wdt, hgt) {
	var posCode = ''
	if (nn4 || nn6 || ie) {
		if ( (screen.height < 481) && (hgt > 400) ) { hgt = 400 }
		posX = Math.round((screen.width - wdt) / 2)
		posY = Math.round((screen.height - hgt) / 2) - 35
		posCode = ",left="+posX+",top="+posY
	}
	popupedWin = window.open(uri, name, "status=yes,menubar=no,toolbar=no,resizable=yes,scrollbars=yes,location=no,width="+wdt+",height="+hgt+posCode)
	popupedWin.focus()
}

//
//
//
function correct_search_string() {
	if (document.getElementById('search_text').className == "input_text") {
		document.getElementById('search_text').className = "input_text_";
		if (document.getElementById('search_text').value == "Поиск по сайту") {
			document.getElementById('search_text').value = "";
		}
	}
}

function return_search_string() {
	if (document.getElementById('search_text').className == "input_text_") {
		document.getElementById('search_text').className = "input_text";
		document.getElementById('search_text').value = "Поиск по сайту";
	}
}


//
// correctly handle PNG transparency in Win IE 5.5 or higher.
// 
// Correctly handle PNG transparency in Win IE 5.5 or higher.
// http://homepage.ntlworld.com/bobosola. Updated 02-March-2004

function correctPNG() {
if( navigator.appName == 'Microsoft Internet Explorer' ) {
	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")
		{
			w = img.width;
			h = img.height;
			if(w != 0) {
				img.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + img.src + "\', sizingMethod='scale')";
				img.src = "/templates/smartbox/pics/1x1.gif";
				img.style.width = w + "px";
				img.style.height = h + " px";
			}
		}
	}
}
}

//
//
//
window.onload = function () {
	correctPNG();
	//generate_wait_link();
}
