function setCLCookie(isName,isVal) {
	document.cookie = isName + "=" + isVal + ";expires="  + "path=/";
}

function getCLCookie(isName){
	cookieStr = document.cookie;
    startSlice = cookieStr.indexOf(isName+"=");
    if (startSlice == -1) {return false;}
    endSlice = cookieStr.indexOf(";",startSlice+1);
    if (endSlice == -1){endSlice = cookieStr.length;}
    isData = cookieStr.substring(startSlice,endSlice);
    isValue = isData.substring(isData.indexOf("=")+1,isData.length);
    return isValue;
}

function dispCLCookie(isName) {
	nValue = getCLCookie(isName);
	
	if (nValue) {
		// so do nothing
	} else {
		jQuery(document).ready(function() {
		  	$.fancybox(
		  		'<div style="border: solid 6px #252525; height:380px !important;  /*per IE*/ height:386px;  padding:16px; background-color:#f9f8f3;" ><div style="font-size:14px; text-decoration:none; line-height:36px;font-weight:bold;">WELCOME!</div><div align="center"><img src="http://static.contactlab.it/calzedonia/20111214/immagini/Intimissimi_overlayer_121211_v3_03.jpg" width="400" height="12"></div><p>Welcome to your very own Intimissimi e-Store, where you can shop for your favourite lingerie brand 24 hours a day, 7 days a week.<br /> At the moment we deliver to Austria, Italy and the United Kingdom, but do not despair because the Intimissimi site is continuously evolving.<br/>If your country is not listed yet, please sign up for our Newsletter indicating your country, and you will be the first to know when we are online with a new store.<br /><br /><div align="center"><a href="/user/subscribe.jsp?email=your%20email%20address"><img src="http://static.contactlab.it/calzedonia/20111214/immagini/sign_up.gif" width="221" height="26" border="0" alt="Sign up to our newsletter"></a></div><br /><a href="http://at.intimissimi.com/select_locale.cmd?dest=%2Fhome.jsp&localeId=4" style="line-height:36px; color:#bc3853; font-size:14px; text-decoration:none; font-weight:bold;"><img src="http://static.contactlab.it/calzedonia/20111214/immagini/au.gif" width="35" height="14" border="0">&nbsp;&nbsp;Besuch des &#246;sterreichischen e-store&nbsp;<img src="http://static.contactlab.it/calzedonia/20111214/immagini/freccia.gif" width="7" height="11" border="0"></a><br /><a href="http://it.intimissimi.com/select_locale.cmd?dest=%2Fhome.jsp&localeId=2" style="line-height:36px; color:#bc3853; font-size:14px; text-decoration:none; font-weight:bold;"><img src="http://static.contactlab.it/calzedonia/20111214/immagini/it.gif" width="35" height="13" border="0">&nbsp;&nbsp; Visita l\'e-store italiano&nbsp;<img src="http://static.contactlab.it/calzedonia/20111214/immagini/freccia.gif" width="7" height="11" border="0"></a><br /><a href="http://uk.intimissimi.com/select_locale.cmd?dest=%2Fhome.jsp&localeId=1" style="line-height:36px; color:#bc3853; font-size:14px; text-decoration:none; font-weight:bold;"><img src="http://static.contactlab.it/calzedonia/20111214/immagini/en.gif" width="35" height="13" border="0">&nbsp;&nbsp;Visit the english e-store&nbsp;<img src="http://static.contactlab.it/calzedonia/20111214/immagini/freccia.gif" width="7" height="11" border="0"></a> </p>',
		  		{
					'autoDimensions'	: false,
					'width'         	: 500,
					'height'        	: false,
					'opacity'			: false,
					'padding' 			: 0,
					'overlayOpacity'	: 0.0,
					'transitionIn'		: 'none',
					'transitionOut'		: 'none',
					'modal'				: false,
					'hideOnOverlayClick': false
		  		}
		  	);
		});
	}
}

window.onload = function(){
	dispCLCookie('CalzedoniaLightbox');
	setCLCookie('CalzedoniaLightbox','CalzedoniaLightboxOn');
};
