

var win= null;

function openRoute(objLink) {

	//alert(objLink.href);
	
	settings='height=550,width=650,top=50,left=50,scrollbars=yes,toolbar=yes,location=no,status=no,menubar=no,resizable=yes,dependent=no';
	win=window.open(objLink.href,'route',settings);
	if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
	return false;
}

function fullScreen(objLink) {
	settings='height=' + (screen.height - 200) + ',width=' + (screen.width - 10) + ',top=0,left=0,scrollbars=yes,toolbar=yes,location=yes,status=yes,menubar=yes,resizable=yes,dependent=no';
	win=window.open(objLink.href,'extern',settings);
	if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
	return false;
}
