/*
  Base URL is specific to each dealer. Each dealer needs to change this URL to their dealer specific URL.
*/

function changeIframe()
{
	if(url = $('#QuickAccess').val())
	{
		//the blank page helps provide visual feedback that the previous page was cleared as some pages can look the same when loaded.
		$('#appsFrame').attr('src','');
		setTimeout("$('#appsFrame').attr('src',url)",100);
	}
}
