The Flash Player and a browser with Javascript support are needed..
El IDRD advirtió que oficialmente no hay nada y que apenas se han hecho visitas
César Pastrana le contó a EL TIEMPO que falta que se adecuen los camerinos y que la última palabra la tiene el presidente de la Federación Colombiana de Fútbol, Luis Bedoya.
La Federación es la responsable de entregar los estadios para el Mundial de Fútbol Sub-20 que se jugará el próximo año. El Campín es uno de esos escenarios y por eso Colfútbol decidirá si se puede usar o no el Nemesio para el compromiso internacional de Santa Fe.
El equipo bogotano jugará como visitante primero contra Deportivo Lara y luego recibirá a la escuadra venezolana. El primer juego será el 17 de agosto y recibirá a su rival el agosto.
Esta será la primera vez que Santa Fe juegue en la Copa Suramericana, certamen al que clasificó luego de ganar el año pasado la segunda edición de la Copa Postobón.
El torneo de la Conmebol comenzará el martes 3 de agosto con el encuentro entre Defensor Sporting de Uruguay y Olimpia de Paraguay. Este año se realiza la novena edición de la copa y contará con la participación de 39.
Además, esta será la primera experiencia del técnico vallecaucano Néstor Otero en un certamen internacional y, a su vez, el debut de César Pastrana en la presidencia en un torneo en el exterior.
' + codeToUse + '';
log('newString: ' + newString);
if(!isIE) {
newP.innerHTML = newString;
}
var loggedIn = false;
if(loggedIn){
log('logged in');
var hiddenFields = '';
if(!isIE) {
TA = document.forms['commentform'];
var htmlHolder = TA.innerHTML;
TA.innerHTML = '';
TA.appendChild(newP);
TA.innerHTML += '' + hiddenFields + htmlHolder;
}
else {
var formElement = document.forms['commentform'].comment;
var parent = formElement.parentNode;
parent.innerHTML = newString + '
' + hiddenFields + parent.innerHTML;
}
}else{
if(!isIE) {
//TA.parentNode.appendChild(newP);
var formElement = document.forms['commentform'].comment;
var parent = formElement.parentNode;
parent.innerHTML = newP.innerHTML + '
' + parent.innerHTML;
}
else {
var formElement = document.forms['commentform'].comment;
var parent = formElement.parentNode;
log('parent: ' + parent);
log('parent.innerHTML before: ' + parent.innerHTML);
parent.innerHTML = newString + '
' + parent.innerHTML;
log('parent.innerHTML: ' + parent.innerHTML );
/*
var parent = document.forms['commentform'].url;
var sibling = parent.nextSibling;
var sparent = parent.parentNode;
var firstChild = sparent.firstChild;
var codeHTML = "
" + newP.innerHTML;
if(sibling != null && sibling.nextSibling != null) {
var next = sibling.nextSibling;
if(next != null && next.innerHTML != null && next.innerText == 'Website')
next.outerHTML += codeHTML;
else
parent.outerHTML += codeHTML;
}
else
parent.outerHTML += codeHTML;
*/
}
}
log('window.onload');
window.onload = function(){
log('onload in php file');
submit = document.getElementById('submit');
log('submit button: ' + submit);
if(submit === null){
log('submit button is null... looking again');
var inputs = document.forms['commentform'].elements;
for(var i = 0; i < inputs.length; i++){
if(inputs[i].type == 'submit'){
submit = inputs[i];
}
}
}
log('submit button: ' + submit);
function initializeForm(){
var submitClick = true;
return validateForm();
}
if(isIE) {
log('cloning button for IE');
var submitClone = document.createElement("input");
submitClone.type = 'button';
submitClone.name = 'submit-button';
submitClone.id = 'submit-button';
submitClone.value = submit.value;
submitClone.className = submit.className;
submitClone.attachEvent('onclick',initializeForm);
submit.parentNode.replaceChild(submitClone, submit);
}
else {
log('changing type for non-IE browsers');
submit.type = 'button';
submit.name = 'submit-button';
submit.id = 'submit-button';
submit.addEventListener('click',initializeForm,false);
log('added event listener to the submit button');
}
log('foo');
if(!jQuery){
var jqueryTag = document.createElement('script');
jqueryTag.src = 'http://www.jrcespedes.com/wp-content/plugins/comments/jquery.1.4.2.min.js';
jqueryTag.type = 'text/javascript';
document.getElementsByTagName("header")[0].appendChild(jqueryTag);
}
log('setting jQuery');
jQuery(document).ready(function(){
log('1');
var content = document.getElementById('recorder-lightbox-help-content');
content.style.width = "440px";
content.style.background = "#fff";
content.style.fontFamily = "Arial, Helvetica, sans-serif";
content.style.position = "fixed";
content.style.left = (jQuery(window).width() - 400) / 2 + jQuery(window).scrollLeft() + "px";
content.style.top = (jQuery(window).height() - 300) / 2 + "px";
content.style.zIndex = "1000";
content.style.fontSize = "14px";
content.style.lineHeight = "20px";
//var closeButton = document.getElementById('hide-recorder-lightbox-help');
//closeButton.style=cursor = "pointer";
jQuery('.recorder-help-content-inner').css('margin', '10px');
jQuery('.recorder-help-content-inner').css('display', 'block');
//jQuery("recorder-lightbox-help").
jQuery('#show-recorder-lightbox-help').click(function(){
jQuery("#lightbox-bg").fadeIn();
jQuery("#recorder-lightbox-help-content").fadeIn();
});
jQuery("#lightbox-bg").click(function(){
jQuery("#lightbox-bg").fadeOut();
jQuery("#recorder-lightbox-help-content").fadeOut();
});
jQuery("#hide-recorder-lightbox-help").click(function(){
jQuery("#lightbox-bg").fadeOut();
jQuery("#recorder-lightbox-help-content").fadeOut();
});
});
}
if(typeof(userEmail) !== 'undefined'){
document.forms['commentform'].email.value = userEmail;
}
if(audio_only){
var p = null;
var p_children = null;
if(p === null){
p = document.forms['commentform'].childNodes;
for (var i = 0; i < p.length; i++){
if(p[i].tagName == "TEXTAREA"){
p[i].style.display = "none";
}
p_children = p[i].childNodes;
for(var x = 0; x < p_children.length; x++){
if(p_children[x].tagName == "TEXTAREA"){
p_children[x].style.display = "none";
}
}
}
}else{
p.style.display = "none";
}
}
function validateForm(){
if(!loggedIn){
if(document.forms['commentform'].author.value == ''){
alert('Please check your name');
return;
}
var filter = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
var address = document.forms['commentform'].email.value;
if(filter.test(address) == false){
alert('Please check your email');
return
}
recordingSave();
}
else {
recordingSave();
}
}
