// JavaScript Document


function getNewCategory(who){
	
	
	if(who.selectedIndex == 0)
	{
		window.location.href="work.php";
		return;
	}
	
	var myindex = who.selectedIndex;
    var SelValue = who.options[myindex].value
	
	window.location.href="category.php?id="+SelValue;
	
	
}

function getNewArtist(who){
	
	if(who=="") return false;
	
	var myindex = who.selectedIndex;
    var SelValue = who.options[myindex].value
	
	window.location.href="artist.php?id="+SelValue;
	
	
}