var popUpWin=0;
function popUp(URLStr, width, height, sbars)
{
if(popUpWin)
	{
		if(!popUpWin.closed) popUpWin.close();
	}
	popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbars='+sbars+',resizable=no,copyhistory=yes,width='+width+',height='+height+',left=50,top=50,screenX=50,screenY=50');
}


function post(divID, action)
{
	if(action) 
	{ 
		document.getElementById(divID).style.display='inline'; 
		if(document.getElementById(divID + '_arrow_down'))  { document.getElementById(divID + '_arrow_down').style.display='inline'; }
		if(document.getElementById(divID + '_arrow_right')) { document.getElementById(divID + '_arrow_right').style.display='none'; }

		// cancel album ID if new posted
		if(document.getElementById(divID + '_list')) { document.getElementById(divID + '_list').options[0].value = 0; }

	}
	else 
	{ 
		document.getElementById(divID).style.display='none';  
		if(document.getElementById(divID + '_arrow_down'))  { document.getElementById(divID + '_arrow_down').style.display='none'; }
		if(document.getElementById(divID + '_arrow_right')) { document.getElementById(divID + '_arrow_right').style.display='inline'; }
	}
}

