

jQuery().ready(function(){	

	$('a').each(function() {

		if($(this).attr('href') && $(this).attr('href').indexOf('start.php') == 0) {
			$(this).click(function(evt) {
				if($('#startfs').length == 0 || $('#startfs').attr('checked')) {					
					evt.preventDefault();
					var w = window.open($(this).attr('href'), 'testwindow', 'fullscreen=yes, toolbar=no, menubar=no,resizable=yes,scrollbars=yes');					
					w.moveTo(0,0);
					w.resizeTo(screen.availWidth, screen.availHeight);
				}
			});
		}

	});

});