// JavaScript Document

function openPopup(id)
{
	if(id==1)
		url = "http://www.dell-arte.com/site/shared/popups/route_utrecht.html";
	if(id==2)
		url = "http://www.dell-arte.com/site/shared/popups/route_amsterdam.html";
	if(id==3)
		url = "http://www.dell-arte.com/site/shared/popups/route_hilversum.html";
	if(id==4)
		url = "http://www.dell-arte.com/site/shared/popups/ov.html";
	
	popup(url, "popup", 400,500);	
}

function popup(URL, name, w, h)
{
	posx = (screen.width - w)/2;
	posy = (screen.height - h)/2;
	window.focus();
	self.name = "led_start";
	settings = 'width=' +w+ ',height=' +h+ ',top=' +posy+ ',left=' +posx+ ',resize=no'
	led_window = window.open(URL, name, settings);
}