<!--
//	Copyright(c)2000-2009 Web4Future Inc. All rights reserved.
//	
//	You may not use this code or any part of it. 
//	Any violation of this notice will result in severe civil and criminal penalities,
//	and will be prosecuted with the maximum extend permited by the law.
// -->


var myDate=new Date();

myDate.setFullYear(2010,7,2);//Y, M, D M=0-11 (inclusiv ultima zi)
var txt = "Concediu de odihna. Comenzile intrate in perioada 14-30 Iulie, se livreaza dupa 3 August.";

//var myDate2=new Date();
//myDate2.setFullYear(2009,11,6);//Y, M, D M=0-11 (inclusiv ultima zi)
//var txt2 = "Vacanta pana pe 5 Ianurie!";


var today = new Date();
document.getElementById('central_banner').innerHTML = '';

if (myDate>=today) {
	document.getElementById('central_banner').innerHTML += '<center><img src="http://www.revell.ro/store/bannervara.gif" alt="'+txt+'" title="'+txt+'" border="0" /></center>';
}

//if (myDate2>=today) {
//	document.getElementById('central_banner').innerHTML += '<center><br><img src="http://www.clip-trade.ro/kidex.jpg" alt="'+txt2+'" title="'+txt2+'" border="0" /></center>';
//}

//~ var bonce = readCookie('banner');
//~ if (bonce=="" || bonce==null) { 
//~ 	TB_show("SUPER OFERTA LIMITATA","popup.html?height=620&width=450",null);
//~ 	createCookie('banner','viewed',10);
//~ }


//~ eraseCookie('ppkcookie')

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);
}
