var t = (" Welcome to Subside Sports...| The complete guide to official world-wide   football products...| 1000's of products must go in our BIGGEST EVER SALE !!! ...| Up to 60% Off National Team Shirts & Trainingwear...|").split("|");

function dynamic_text(x, y)
{
    return;
    document.getElementById("tb").value = t[x].substring(0, y);
	if(t[x].length == y) {
        if(t.length-1 == x) {
            x = 0;
            y = 0;
        }
        else {
            x++;
            y = 0;
        }
    }
    else {
        y++;
    }
    window.setTimeout("dynamic_text(" + x + "," + y + ")", 100);	
}
function mainOpenPopup(page, url, height, width, scrollbars) {
    window.open(page, "popup", "width=" + width + ",height=" + height + ",resizable=no,status=no,scrollbars=" + scrollbars);
    if (url != "") {
        window.location.href = url;
    }
}

function openPopup(page, width, height) {
    window.open(page, "popup", "width=" + width + ",height=" + height + ",resizable=yes,status=no,scrollbars=no");
}

