function loadCSS(cssFile){  
	var cssLink=document.createElement("link");  
	cssLink.setAttribute("rel", "stylesheet");  
	cssLink.setAttribute("type", "text/css");  
	cssLink.setAttribute("href", cssFile);  
	document.getElementsByTagName("head")[0].appendChild(cssLink);  
}

$(function(){  
	$(".asistenciaonline").click(function() {
	    	window.open("sites/asistencia.php", "chat", 'width=500,height=500,resizable=no'); 
	    	return false;
	})
	

	
	$("#colores").click(function() {
	    	window.open("sites/colores.php", "chat", 'width=430,height=600,resizable=no'); 
	    	return false;
	})
});
