function logo()
	{
	var c = true;
	if(scriptName == '/upload.html')
		{
		c = confirm('Are you sure you want to go back to the homepage?');
		}
	if(c == true)
		{
		document.location.href='/';
		}
	}

function logo2()
	{
	var c = true;
	if(scriptName == '/upload.html')
		{
		c = confirm('Are you sure you want to go back to the homepage?');
		}
	return c;
	}
function createNewPopop()
	{
	if(scriptName == '/upload.html')
		{
		var c = 1;
		c = confirm('Are you sure you want to start a new slideshow?');
		if(c == 1)
			{
			document.location.href="./killcookie/killcookie.cfm";
			return false;
			}
		else{
			return false;
			}
		}
		window.location="./killcookie/killcookie.cfm";
		leaving=0;
		return false;
	}
	function login()
	{
		var newWin = window.open('login.cfm','','scrollbars=no,menubar=no,height=150,width=290,resizable=no,toolbar=no,location=no,status=no');
	}
	
	function signUp()
	{
		var newWin = window.open('signup.cfm','','scrollbars=no,menubar=no,height=200,width=400,resizable=no,toolbar=no,location=no,status=no');
	}
	
	


