// JavaScript Document

function nWin(url)	{
 
var newwindow;
 
	newwindow=window.open(url,'nWin','height=1000,width=1000,scrollbars=1,status=yes');
	if (window.focus) {newwindow.focus()}
}

function OrSimilar()	{
	
var MsgOrSimilar;

	MsgOrSimilar = "View vehicle photos by clicking on the car models below.\n\n"+
									"Other than certain specialty models like the Jeep models and a few\n"+
									"other SUVs the rental companies don't reserve by specific make and\n"+
									"model rather by rental class.\n\n"+
									"The rental companies vary in their selection of models for their\n"+
									"rental fleet and as such they reserve by a rental class which\n"+
									"requires that any vehicle provided will be at least on par with\n"+
									"the largest representative vehicle within their rental fleet.\n\n"+
									"In many cases though this is negated by their having only the\n"+
									"one model in their fleet. Also most rental locations will do\n"+
									"their best to accommodate your preference if informed in advance."

	window.alert(MsgOrSimilar)
}


 
