function toggleshow(eleID) {
if(document.getElementById(eleID).style.display == 'none')
	{ 
	document.getElementById(eleID).style.display = 'block';
	}else{ 
	document.getElementById(eleID).style.display = 'none';
	}
	}
	
function msgsure(targetlocation,info) //removes a user from a photo and asks them  ARE THEY SURE?
{
input_box=confirm("Are you SURE?\n\n"+info);
if (input_box==true)
	{ 
	window.location=targetlocation;
	}
}

function winOpener(theURL, winName, scrollbars, resizable, width, height) {
	winFeatures = 'left=' + (screen.availWidth-10-width)/2 + ',top=' + (screen.availHeight-30-height)/2 + ',scrollbars=' + scrollbars + ',resizable=' + resizable + ',width=' + width + ',height=' + height + ',toolbar=0,location=0,status=1,menubar=0'
  	window.open(theURL, winName, winFeatures);
}