
function createCookie(name,value,days) {
	if (days) {
		var date = new Date();
		date.setTime(date.getTime()+(days*30*60*1000));
		var expires = "; expires="+date.toGMTString();
	}
	else var expires = "";
	document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
	var nameEQ = name + "=";
	var ca = document.cookie.split(';');
	for(var i=0;i < ca.length;i++) {
		var c = ca[i];
		while (c.charAt(0)==' ') c = c.substring(1,c.length);
		if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
	}
	return null;
}

function confirmDlg(){
	var x = readCookie("asoiumrjsyod");
	if (!x ) {
		if (confirm(" By clicking on \"Ok\" you confirm that you are not accessing\nthis information from the United States, Australia, Canada or Japan.\nOtherwise, please click on \"Cancel\"\n\n Просим Вас подтвердить, что Вы не находитесь\nна территории Соединенных Штатов Америки, Австралии,\nКанады или Японии, нажав на кнопку \"Ok\". В противном\nслучае нажмите \"Отмена\".")){
			createCookie("asoiumrjsyod",1,1);
		}
		else {
			parent.location='http://sever.gorod.ru/default.htm';
		}
	}
	else {
		createCookie("asoiumrjsyod",1,1);
	}
}

function OpenWin(par) {
	if (par==1) 
		window.open("/scheme.htm","flash","height=500,width=715,top=0,left=0,scrollbars=0");
	if (par==2) 
		window.open("/english/scheme.htm","flash","height=500,width=715,top=0,left=0,scrollbars=0");
}

