

// Create a popup window with passed parameters
function newWin(url,w,h,menubar,toolbar,location,scrollbar,resizable) {  
	var appWindow = window.open(url, "appWin", "menubar=" + menubar + ", toolbar=" + toolbar + ",location=" + location + ",resizable=" + resizable + ",scrollbars=" + scrollbar + ",left=20,top=20,width=" + w + ",height=" + h);
}


// Create popups for Flash movies from Service & Maintenance home page
function flashpops() {
	var flashPopLinks = $$('#auto-systems-guide-wrap a');
	flashPopLinks.each(function(item) {
		item.onclick = function() {
			newWin(this.href,'700','400','no','no','no','no','no');
			return false;
		}
	})
}


