// JavaScript Document
function MM_openBrWindow(theURL,winName,features) 
{
	window.open(theURL,winName,features);
}

function SetCookie(cookieName,cookieValue,nDays) 
{
	var expire = new Date();
	if (nDays==null || nDays==0) nDays=1;
	expire.setTime(expire.getTime() + 3600000*24*nDays);
	document.cookie = cookieName+"="+escape(cookieValue)+";expires="+expire.toGMTString()+";path=/";
}

function SetLang(lang) 
{
	SetCookie('thriftygreece',lang,365);
	document.location=document.location;
}

function show_offer(offer_link, w, h)
{
  win = window.open(offer_link, 'offer', 'status=no,help=no,toolbar=no,scrollbars=yes,width='+w+',height='+h)
  win.focus()
}

function show_image(link, w, h)
{
  win = window.open(link, 'full', 'status=no,help=no,toolbar=no,scrollbars=yes,width='+w+',height='+h);
  win.focus();
}