// JavaScript Document
function popFlv( vid ){
	window.open( "/pop_flvplayer.php?vid=" + vid , "flvPlayer", "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,width=500,height=350,left=250,top=50");
	return false;
}

function popFlash( vid ){
	window.open( "/pop_flash.php?vid=" + vid , "flashPlayer", "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,width=500,height=350,left=250,top=50");
	return false;
}

function popImage( id ){
	window.open( "/pop_image.php?id=" + id , "viewimage", "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,width=500,height=350,left=250,top=50");
	return false;
}

function popPush( type, id ){
	window.open( "/pop_push_" + type + ".php?id=" + id , type + "push", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,width=550,height=400,left=250,top=50");
	return false;
}

function popRePush( id ){
	window.open( "/pop_repush.php?pushid=" + id, "repush", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,width=550,height=400,left=250,top=50");
	return false;
}



function playTape( mid ){
	window.open( "/pop_mp3Player.php?mid=" + mid , "mp3player", "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,width=500,height=450,left=250,top=50");
	return false;
}

function playTrack( mid, tid ){
	window.open( "/pop_mp3Player.php?mid=" + mid + "&tid=" + tid , "mp3player", "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,width=500,height=450,left=250,top=50");
	return false;
}

function downloadTape( tapeid ){
	/*alert( "Downloads are currently disabled. Feel free to listen to the mixtape with the flash player" );
	return false;*/
	window.open( "/pop_download.php?mid=" + tapeid , "download", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,width=600,height=400,left=250,top=50");
	return false;
}

function popCode( tapeid ){
	/*alert( "Downloads are currently disabled. Feel free to listen to the mixtape with the flash player" );
	return false;*/
	window.open( "/pop_myspace.php?mid=" + tapeid , "myspace", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,width=600,height=400,left=250,top=50");
	return false;
}

function generalPop( url ){
	window.open( url , "general", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width=600,height=400,left=250,top=50");
	return false;
}

function addEngine(){
  if ((typeof window.sidebar == "object") && (typeof window.sidebar.addSearchEngine == "function") ){
    window.sidebar.addSearchEngine(
      "http://www.datpiff.com/plugin/datpiff.src",
      "http://www.datpiff.com/plugin/datpiff.png",
      "DatPiff",
      "General" );
  }else{
  	alert( "Error installing, do you have Mozilla/Firefox installed?" );
  }
}

function addBookmark(title,url) {
	if (window.sidebar) { 
		window.sidebar.addPanel(title, url,""); 
	} else if( document.all ) {
		window.external.AddFavorite( url, title);
	} else if( window.opera && window.print ) {
		return false;
	}
}