
function showVideos(crit, sortOrder)
{  
  if ( sortOrder == "cat" )
	document.location = "http://www.peppapot.com/allvideo.php?cat=" + crit.value;
  else 
	document.location = "http://www.peppapot.com/allvideo.php?artist=" + crit.value;
}

function showSongs(crit, sortOrder)
{
  if ( sortOrder == "cat" )
	document.location = "http://www.peppapot.com/allaudio.php?cat=" + crit.value;
  else
	document.location = "http://www.peppapot.com/allaudio.php?artist=" + crit.value;
}

function emailMe(page,title){
	url = "http://www.peppapot.com/emailme.php?page=" + page + "&title=" + title;
	window.open(url, 'email', 'height=300,width=400,toolbar=no,menubar=no,location=no,scrollbars=yes');
}

function emailAll(switches,type){
	if ( type == "pic" ) {
		switchArray = switches.split(';');
		url = "http://www.peppapot.com/emailall.php?aid=" + switchArray[0] + "&pid=" + switchArray[1] + "&type=" + type;
		window.open(url, 'email', 'height=300,width=500,toolbar=no,menubar=no,location=no,scrollbars=yes');
	}else if ( type == "qna" ) {
		switchArray = switches.split(';');
		url = "http://www.peppapot.com/emailall.php?qid=" + switchArray[0] + "&title=" + switchArray[1] + "&type=" + type;
		window.open(url, 'email', 'height=300,width=500,toolbar=no,menubar=no,location=no,scrollbars=yes');
	}
}