// Opens PopUps
function openWhoWeAre(URL) { 
window.open(URL,"who_we_are","height=300,width=390,left=80,top=80,scrollbars=no,menubar=no,resizable=no,location=no,toolbar=no");
}
function openProduct(URL) { 
window.open(URL,"product","height=600,width=500,left=80,top=80,scrollbars=no,menubar=no,resizable=no,location=no,toolbar=no");
}
function openGuide(URL) { 
window.open(URL,"guide","height=200,width=390,left=80,top=80,scrollbars=no,menubar=no,resizable=no,location=no,toolbar=no");
}

function openWindow(URL,Width,Height,Scrollbars) { 
window.open(URL,"popup","width=" + Width + ",height=" + Height + ",left=20,top=20,scrollbars=" + Scrollbars + ",menubar=no,resizable=no,location=no,toolbar=no");
}
