// JavaScript Document
function linkURL(hrefAddress){
    window.document.location=hrefAddress;
}
function openURL(hrefAddress){
    window.open(hrefAddress);
}
