// JavaScript Document

popUp = null;	
songId = null;	
sorting = null;	
next = null;
pid = null;

	function playSong(sid, order, nx, pageId) {
		songId = sid;
		sorting =order;
		next = nx;
		pid = pageId;
		
		popUp = window.open( '', 'player','scrollbars=no,status=yes,toolbar=no,location=no,directories=no,resizable=yes,menubar=no,width=510,height=460,screenX=10,screenY=10, left=10, top=10');
		popUp.focus();
		try {
			popUp.addSong(songId, sorting, next, pid);
			popUp.focus();
		} catch( e) {
			popUp = window.open('http://www.mp3.ch/index.php?id=357','player','scrollbars=no,status=yes,toolbar=no,location=no,directories=no,resizable=yes,menubar=no,width=510,height=460,screenX=10,screenY=10,left=10,top=10'); 
			popUp.focus();
			var popUpWin=0;

		}
	}
	

