// JavaScript Document
<!--
function sample(targ) {
        var targWindow = window.open(targ,"sample","scrollbars,width=700,height=500,resizable=yes");
        targWindow.focus();
}
function pop_up(targ) {
        var targWindow = window.open(targ,"news","scrollbars,width=475,height=400,resizable=yes");
        targWindow.focus();
}
function mp3(targ) {
        var targWindow = window.open(targ,"mp3s","scrollbars,width=300,height=50,resizable=yes");
        targWindow.focus();
}
// -->

