// global vars, functions for sonorasansoo webdesigns site, custom written by tntemerson

var site_version = "1.0";

portfolio_link = "";



function get_copyRight(holder) {
	lastmod = document.lastModified;
	d = new Date(lastmod);
	day = d.getDate();
	
	if (day < 10) {
		day = "0" + day;
	}
	month = d.getMonth() +1;
	if (month < 10) {
		month = "0" + month;
	}
	
	year = d.getYear();
	year = year.toString();
	temp = year.charAt(0);
	if (temp == "1") {
		year = year.replace(/1/,"20");
	}
	return  "copyright &copy "+month+"."+day+"."+year+" "+holder ; 

}

function get_referrer() {
	var dr="";
	if (!document.referrer) {
		dr="no referrer";
	}
	else {
		dr=document.referrer;		
	}
	return dr;
}



function set_portfolio_url() {

	var url = "";
	
	referred = get_referrer();

	switch (referred) 
	{

		case "http://www.istockphoto.com/user_view.php?id=1765096":
			// istock
			url = "http://www.istockphoto.com/file_search.php?action=file&userID=1765096&order=7&fileTypeSizePrice=[{%22type%22%3A%22Image%22%2C%22size%22%3A%22All%22%2C%22priceOption%22%3A%221%22}%2C{%22type%22%3A%22Illustration+[Vector]%22%2C%22size%22%3A%22Vector+Image%22%2C%22priceOption%22%3A%22All%22}%2C{%22type%22%3A%22Flash%22%2C%22size%22%3A%22Flash+Document%22%2C%22priceOption%22%3A%22All%22}%2C{%22type%22%3A%22Video%22%2C%22size%22%3A%22All%22%2C%22priceOption%22%3A%221%22}%2C{%22type%22%3A%22Standard+Audio%22%2C%22size%22%3A%22All%22%2C%22priceOption%22%3A%221%22}%2C{%22type%22%3A%22Pump+Audio%22%2C%22size%22%3A%22All%22%2C%22priceOption%22%3A%221%22}]&filterContent=null&illustrationLimit=null&flashLimit=null&bestmatchmix=100&perPage=200&showFileNumber=null&enableLoupe=null";
			break;
		case "http://www.dreamstime.com/emersont_info":
			// dreamstime
			url = "http://www.dreamstime.com/emersont_portfolio_pg1";
			break;
		case "http://stockxpert.com/browse.phtml?f=profile&l=tntemerson":
			// stockxpert
			url = "http://stockxpert.com/browse.phtml?f=profile&l=tntemerson";
			break;
		case "no referrer":
			// no referrer
			url = "http://www.istockphoto.com/file_search.php?action=file&userID=1765096&order=7&fileTypeSizePrice=[{%22type%22%3A%22Image%22%2C%22size%22%3A%22All%22%2C%22priceOption%22%3A%221%22}%2C{%22type%22%3A%22Illustration+[Vector]%22%2C%22size%22%3A%22Vector+Image%22%2C%22priceOption%22%3A%22All%22}%2C{%22type%22%3A%22Flash%22%2C%22size%22%3A%22Flash+Document%22%2C%22priceOption%22%3A%22All%22}%2C{%22type%22%3A%22Video%22%2C%22size%22%3A%22All%22%2C%22priceOption%22%3A%221%22}%2C{%22type%22%3A%22Standard+Audio%22%2C%22size%22%3A%22All%22%2C%22priceOption%22%3A%221%22}%2C{%22type%22%3A%22Pump+Audio%22%2C%22size%22%3A%22All%22%2C%22priceOption%22%3A%221%22}]&filterContent=null&illustrationLimit=null&flashLimit=null&bestmatchmix=100&perPage=200&showFileNumber=null&enableLoupe=null";
			break;
		default:
			// istock default
			url = "http://www.istockphoto.com/file_search.php?action=file&userID=1765096&order=7&fileTypeSizePrice=[{%22type%22%3A%22Image%22%2C%22size%22%3A%22All%22%2C%22priceOption%22%3A%221%22}%2C{%22type%22%3A%22Illustration+[Vector]%22%2C%22size%22%3A%22Vector+Image%22%2C%22priceOption%22%3A%22All%22}%2C{%22type%22%3A%22Flash%22%2C%22size%22%3A%22Flash+Document%22%2C%22priceOption%22%3A%22All%22}%2C{%22type%22%3A%22Video%22%2C%22size%22%3A%22All%22%2C%22priceOption%22%3A%221%22}%2C{%22type%22%3A%22Standard+Audio%22%2C%22size%22%3A%22All%22%2C%22priceOption%22%3A%221%22}%2C{%22type%22%3A%22Pump+Audio%22%2C%22size%22%3A%22All%22%2C%22priceOption%22%3A%221%22}]&filterContent=null&illustrationLimit=null&flashLimit=null&bestmatchmix=100&perPage=200&showFileNumber=null&enableLoupe=null";
	}

	return url;

}

