function open_window(url,ww,hh,tit)
{
			var NEW_WIN = null;
			var cont = "<html><head><title>"+tit+
			"</title></head><body topmargin="+0+" leftmargin="+0+
			" rightmargin=\"+0+\" bottommargin="+0+"><img src="+url+
			" width="+ww+" height="+hh+"></body></html>";
			NEW_WIN = window.open ("","",
			"toolbar=no,width="+ww+",height="+hh+",directories=no,status=no,scrollbars=no,resize=no,menubar=no");
			NEW_WIN.document.write(cont);
			NEW_WIN.document.close();
}

function doPrint() {

	window.print();

	return false;
}


function createCookie(name,value,days) {
	if (days) {
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*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 eraseCookie(name) {
	createCookie(name,"",-1);
}



function hide_div()
     {

    var dvr = document.getElementById('usDiscl');
	dvr.style.display = (dvr.style.display == "none") ? "block" : "none";
    var dv = document.getElementById('shareHolders');
	dv.style.display = (dv.style.display == "none") ? "block" : "none";

     }

function redirect_disclaimer()
     {
      alert('We are sorry, but because of legal restrictions, you are not able to access the Restricted Area');
      window.location="http://www.chimimport.bg/en/";

     }


function hide_divNews()
     {

    var dvr = document.getElementById('usDiscl');
	dvr.style.display = (dvr.style.display == "none") ? "block" : "none";
    var dv = document.getElementById('shareHolders');
	dv.style.display = (dv.style.display == "none") ? "block" : "none";
	createCookie('NewsDisclaimer','yes',1);

     }

function redirect_disclaimerNews()
     {
	  eraseCookie('NewsDisclaimer');	
      alert('We are sorry, but because of legal restrictions, you are not able to access the Restricted Area');
      window.location="http://www.chimimport.bg/en/";

     }


