// JavaScript Document
	function fromFlashNav(strWhichURL)
	{	
	
//		alert("yo" + strWhichURL);
		strMasterPath  = "http://ultimateridesonline.com/";
//		strMasterPath  = "";

		if(strWhichURL == "about")
			window.location = strMasterPath + "about_ultimate_rides.html";
		if(strWhichURL == "contact")
			window.location = strMasterPath + "contact_directions.html";
		if(strWhichURL == "cars")
			window.location = strMasterPath + "autos_for_sale.html?id=0&thispage=0&orderby=0&scrollpos=0";
		if(strWhichURL == "comments")
			window.location = strMasterPath + "customer_comments.html";
		if(strWhichURL == "home")
			window.location = strMasterPath + "index.html";
		if(strWhichURL == "past_sales")
			window.location = strMasterPath + "sold_cars/index.htm";
		if(strWhichURL == "purchasing")
			window.location = strMasterPath + "purchasing.html";
		if(strWhichURL == "financing")
			window.location = strMasterPath + "financing.html";
	if(strWhichURL == "sell")
			window.location = strMasterPath + "sell-my-car.html";
		if(strWhichURL == "buy")
			window.location = strMasterPath + "find-a-specific-car.html";
}
	
function loadwindow(url){
window.open(url,"","width=500,height=400,status=1")
}
