function ShowPicGallery(parm)
{
	window.open("../UDPages/showgallery.aspx?AlbumId=" + parm ,"win",'toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,width=650,height=550,left=50,top=50');					
}		

	
function ShowThumbsGallery(t,c,type)
	{
		//declare a string variable
		var retval="";

		//show modal dialog box and collect its return value
		if (type==0)
		{
			spage = "PickThumb";
		}
		else
		{
			spage = "PickImage";
		}
		
		retval=window.showModalDialog('../UDControls/' + spage + '.htm',window,'dialogheight:400px; dialogwidth:620px; center:yes; status:no; help:no');
		//retval = window.open('../UDControls/' + spage + '.htm')
		//check if user closed the dialog 
		//without selecting any value
		if(retval!="" && retval!=null)
		{
		//fill the textbox with selected value

		document.getElementById(c).src=retval;
		document.getElementById(t).value=retval;
		}
	}			



function LaunchRadio()
	{
		AN = window.open("http://www.desiwebpages.com/odradio.asp","WinRadio","width=318, height=160, left=100, top=100, resizeable=no, scrollbars=yes, toolbar=no, status=no, menubar=no, location=no, directories=no")
	}
