function onUploadType(obj)
{
		if (obj.value == 'file')
		{
			$('.choice_file').show();
			$('.choice_url').hide();
		}
		else
		{
			$('.choice_file').hide();
			$('.choice_url').show();
		}
}

function PopUpwin(URL,x,y,sb) { 
newwin = window.open (URL,'popup','toolbar=no,location=no, status=no,menubar=no,scrollbars='+ sb +',resizable=yes,width='+ x +',height='+ y +',left=15,top=15'); 
newwin.focus(); 
}
