//COPYRIGHT

function copyright(){
var year = "2009";
document.write('© ' + year + ' Mission Viejo Rental');
}

//POPUP WINDOWS 1

//	pop-up windows: what can I rent (w600 x h400);
//	terms and conditions (w400 x h400)

function open_window(url,w,h,x,y)
{	var x = screen.width/2-w/2;
	var y = screen.height/2-h/2;
	//alert(w+", "+h);
	//alert(x+", "+y);
	var win_param = "width="+w+",height="+h+", scrollbars=yes"+", screenX="+x+", screenY="+y;
	var newWindow = window.open(url,"Loading",win_param);
	
	newWindow.focus();
	
}

//POPUP WINDOWS 2

function open_window_ns(url,w,h,x,y) //no scrollbars
{	var x = screen.width/2-w/2;
	var y = screen.height/2-h/2;
	//alert(w+", "+h);
	//alert(x+", "+y);
	var win_param = "width="+w+", height="+h+", scrollbars=no"+", statusbar=no"+", screenX="+x+", screenY="+y;
	var newWindow = window.open(url,"Loading",win_param);
	
	newWindow.focus();
}


function choose() {
	alert('Choose either "Party Rental" or "Construction Rental" below to enter the site');
	}
	
function GetL(product,img) {
		//alert(product);
		//alert(img);
		window.open('../images/' + product +'/' + img + '_L.jpg' );
		}