﻿
function gotoURL(url) {    
    document.location.href = url;
}

function openWindow(url, size) {
    window.open(url,'',size);
}
