<script>
function popup(mylink){

 if (!window.focus)

 	return true;

 var href;

 if (typeof(mylink) == 'string')

	 href=mylink; 

else href=mylink.href;



 randomName = 'mp3player_33';

 //+String(Math.random()*10000);

 //alert(randomName);

if( window.open(href,'mp3player_34','width=817,height=355,scrollbars=no')){
	//alert('Window open works');
}
else{

 	alert('Windo open not not works');
}

return false;

}
</script>