function toggle(str)
{
	
	obj = document.getElementById(str);
	//alert(obj.style.display);
	if(obj.style.display == 'none')
		obj.style.display = '';
	else
		obj.style.display = 'none';
}

function openPopup(img, wid, hyt)
{

	myURL = 'picture.php?img=' + img;
	myFeatures = 'left=20,top=20,width=' + wid + ', height=' + hyt + ',toolbar=1,resizable=0'
	myRef = window.open(myURL ,'mywin',myFeatures);
	myRef.focus();
}


function playmovie(myURL, wid, hyt)
{
		myFeatures = 'left=20,top=20,width=' + wid + ', height=' + hyt + ',toolbar=1,resizable=0'
		myRef = window.open(myURL ,'mywin',myFeatures);
		myRef.focus();
	
}