function hideFrame()
{
	if(document.getElementById('frame0001'))
		document.getElementById('frame0001').style.display = 'none';
}

var Cookies = {
	init: function () {
		var allCookies = document.cookie.split('; ');
		for (var i=0;i<allCookies.length;i++) {
			var cookiePair = allCookies[i].split('=');
			this[cookiePair[0]] = cookiePair[1];
		}
	},
	create: function (name,value,days) {
		if (days) {
			var date = new Date();
			date.setTime(date.getTime()+(days*1*60*60*1000));
			var expires = "; expires="+date.toGMTString();
		}
		else var expires = "";
		document.cookie = name+"="+value+expires+"; path=/";
		this[name] = value;
	},
	erase: function (name) {
		this.create(name,'',-1);
		this[name] = undefined;
	}
};
Cookies.init();

if(Cookies['informatii_cazari_frame'] != 'hide')
{
	document.write('<style>');
	document.write('#frame0001 {');	
	document.write('	position:     	absolute;');
    document.write('	top:          	10px;');
	document.write('	left:         	10px;');
    document.write('	width:        	260px;');
	document.write('	height:       	330px;');
	document.write('	font-size:		12px;');
	document.write('	padding:		5px;');
	document.write('	font-family:	Arial, Helvetica, sans-serif;');
	document.write('	border:			1px solid #999999;');
	document.write('	background:		#ffffff;');
	document.write('	display:		block;');
	document.write('}');
	document.write('.style200001 {');	
	document.write('	color:			#D96C00;');
	document.write('	font-weight:	bold;');
	document.write('}');
	document.write('.style200002 {');	
	document.write('	color:			#000000;');
	document.write('	font-size:		20px;');
	document.write('	font-weight:	bold;');
	document.write('}');
	document.write('</style>');
	
	document.write('<div id="frame0001">');

	var img_path = 'http://www.informatii-cazari.ro/img/';
	var text = '';
	
	text = '<div style="clear:left; float:right; width:100%; margin-bottom:10px;" align="right"><a onclick="hideFrame()" title="Close" style="cursor:pointer;"><img src="../img/frame_close.png" width="60" height="25" border="0" title="Informatii Cazari - cazari in Romania" alt="Informatii Cazari - cazari in Romania" /></a></div><div style="clear:left; float:left; width:100%; margin-bottom:20px;"><div align="center"><a href="http://www.informatii-cazari.ro" title="Informatii Cazari" target="_blank"><img src="../img/logo_transparent.png" width="250" height="100" border="0" /></a>  </div></div><div style="clear:left; float:left; width:100%;"><span class="style200002">Informatii-cazari.ro</span><br><p>Inscrieri cabane, pensiuni, hoteluri, moteluri, apartamente, vile, casute, campinguri.</p><span class="style200001">Beneficiaza de promovare turistica gratuita.</span><p><strong>Gaseste unitatea de cazare potrivita pentru tine !</strong></p><br><a href="http://www.informatii-cazari.ro" target="_blank">www.informatii-cazari.ro</a></div>';

	while(text.indexOf('../img/') != -1)
		text = text.replace('../img/', img_path );

	
	document.write(text);

	document.write('</div>');

}

Cookies.create('informatii_cazari_frame','hide',1);
//Cookies.erase('informatii_cazari_frame');