<!--//hide from old browsers

	//this variables will hold the pages to be opened
	var application=null;
	var programme=null;
	 
	function openWindow(page, cual){
	if (cual=="app"){
		if(!application || application.closed){
		application=window.open(page,'application',"width=700,height=600,scrollbars=yes,resizable=yes,left=100,top=0");
		application.focus();
		}
	}
	else {
		if(!programme || programme.closed){
		programme=window.open(page,'programme',"width=400,height=400,scrollbars=no,resizable=no,left=400,top=0");
		programme.focus();
		}
	}
	}

//-->