/*======================================== Vars ===============*/

var c_name_li = "large_image";
var c_name_alt = "alt_text";

/*-------------------------------------------------------------*/

function SetCookie(c_name, value, expiredays)
{
	var exdate = new Date();
	exdate.setDate(exdate.getDate() + expiredays);
	
	document.cookie = c_name + "=" + escape(value)+
					 ((expiredays == null) ? "" : ";expires=" + exdate.toUTCString());
}

/*-------------------------------------------------------------*/

function SetCookies(pLi_path, pAlt_text)
{
	SetCookie(c_name_li, pLi_path, 2);
	SetCookie(c_name_alt, pAlt_text, 2);
}

/*-------------------------------------------------------------*/

function GetCookie(c_name)
{
	if (document.cookie.length > 0)
	{
		c_start = document.cookie.indexOf(c_name + "=");
  
		if (c_start != -1)
		{
			c_start = c_start + c_name.length + 1;
			c_end = document.cookie.indexOf(";", c_start);
    
			if (c_end == -1) c_end = document.cookie.length;
			
			return unescape(document.cookie.substring(c_start, c_end));
		}
	}
	
	return "";
}

//onclick="OpenLargeImage('<?php echo $imagesLoc; ?>JensWouters.jpg','Een foto van mijzelf.');"
//onclick="OpenLargeImage('http://student-kmt.hku.nl/~jens/portfolio5/projects/sell-it/level_large.jpg','Project Sell it&thinsp;!!! - A conceptual render of what the game would look like. ');" />


/*-------------------------------------------------------------*/

function OpenLargeImage(pLi_path, pAlt_text) 
{
	SetCookies("http://student-kmt.hku.nl/~jens/portfolio5/projects/sell-it/level_large.jpg", "Test"); //pLi_path, pAlt_text);
	alert(document.cookie);
	window.open("http://student-kmt.hku.nl/~jens/portfolio5/images/showImage.php");
}

/*-------------------------------------------------------------*/

function Test()
{
	alert("Test");
}

/*-------------------------------------------------------------*/
