function newcdpopup(cd_url) {

// pop up a window 500 x 400 to show the CD details

cdPopUp = window.open(cd_url, "CDWindow", "width=640,height=480,scrollbars=yes,toolbar=yes,resizable=1");

cdPopUp.focus();

}



function newtrackpopup(track_url) {

// pop up a window 500 x 400 to play the track

trackPopUp = window.open('http://www.eversound.com/mp3/' + track_url,"TrackWindow","width=400,height=30,resizable=1,top=401,titlebar=no");

trackPopUp.focus();

}

function shoppingcartwindow(shoppingcartitem_url) {

// pop up a window 500 x 400 to play the track

shoppingcart = window.open(shoppingcartitem_url,"CartWindow","width=640,height=480,resizable=1,top=401,titlebar=no");

shoppingcart.focus();

}

function newflashpopup(flash_url) {

// pop up a flash window 360 x 240 to show the swf file

flashPopUp = window.open('http://www.eversound.com/flashmovies/' + flash_url, "CDWindow", "width=360,height=240,scrollbars=no,toolbar=no,resizable=1");

flashPopUp.focus();

}

