<!-- Begin POP-UP SIZES AND OPTIONS CODE

// CHANGE ANY OF THESE VARIABLES FOR THE SOUND POPUPS

//  use only lowercase on options




// MP3 PLAYER PAGE

var viewer_sound 	= "same"	// OPTIONS: | new | popup | same | New browser or a popup
var width_sound 	= "800"		// WIDTH OF THE SAMPLES PAGE POPUP
var height_sound 	= "600"		// WIDTH OF THE SAMPLES PAGE POPUP
var scrollbarS_sound	= "no"		// SHOW SCROLLBARS IN SAMPLES POPUP - yes OR no
var menu_sound		= "no"		// SHOW MENU IN SAMPLES POPUP - yes OR no
var tool_sound		= "no"		// SHOW TOOLBAR IN SAMPLES POPUP - yes OR no





// COPYRIGHT 2009 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE






function popUpSound(data) {
   if (viewer_sound == "popup") {
    windowHandle = window.open('player-home.htm' + '?' + data,'windowName',',scrollbars='+scrollbarS_sound+',resizable=yes,toolbar='+tool_sound+',menubar='+menu_sound+',width='+width_sound+',height='+height_sound+'');

}
else if (viewer_sound == "new") {
    windowHandle = window.open('player-home.htm' + '?' + data,'windowName');
}
else if (viewer_sound == "same") {
    window.location = ('player-home.htm' + '?' + data);
}
}




// END SOUND POPUP CODE






// End -->