	
	
	function ShowImage(photoID,urlStr,width,height)
	{
		var newWin;
		width+=45;
		height+=95;
		newWin = window.open("/PhotoAlbum.asp?id="+photoID+"&url="+urlStr,"photos","width="+width+",height="+height+",status=no,toolbar=no,menubar=no,location=no,titlebar=no,resizable=no");	
		newWin.resizeTo(width,height);
		newWin.moveTo(300,80);
		newWin.focus();		
	}
	
	function changeAction(theForm, actionVal, modeVal)
	{
		theForm.action = actionVal;
		theForm.mode.value = modeVal;
	}
	
	function launchWin(url,sizeStr)
	{
		var newWin;
		newWin = window.open(url,null,sizeStr+",status=no,toolbar=no,menubar=no,location=no,titlebar=no,resizable=no");	
		newWin.focus();
	}