function changeVisual(obj)
{
	var box1 = document.getElementById('box1');
	var box2 = document.getElementById('box2');
	var user_url = document.getElementById('user_url');
	
	// If Image was selected as the upload type
	if(obj.value=='image')
	{
		box1.style.visibility = "visible";
		box1.style.width = "275px";
		box1.style.borderWidth = "1px";
		box2.style.visibility = "hidden";
		box2.style.width = "0px";
		box2.style.borderWidth = "0px";
	}
	
	// If URL was selected as the upload type
	if(obj.value=='url')
	{
		user_url.value = 'Enter URL Here...';
		user_url.style.height = "18px";
		box1.style.visibility = "hidden";
		box1.style.width = "0px";
		box1.style.borderWidth = "0px";
		box2.style.visibility = "visible";
		box2.style.width = "275px";
		box2.style.borderWidth = "1px";
		box2.addEventListener("click",
    	function() 
		{
			if(user_url.value == 'Enter URL Here...')
			{
				user_url.value = '';
       		 	return false;
			}
   		}
		,true);
	}
	return
}
