﻿/*
	Functionality for the html sound player

	// Opens P5 Mediaplayer
	// Channel: 1-P4 Norge	2-P4 Hits	3-P4 Ballade	4-P4 Norsk	5-P4 Oldies
	// sType: nyheter, samisk, sytten, program, clip
	// iID: Converted_soundsID, MMO_ID eller PS_ID

*/
function openP5Player(iChannel, sType, iID){
	if (iChannel == undefined) iChannel = "";
	if (sType != undefined) sType = "&type=" + sType; else sType = "";
	if (iID != undefined) iID = "&id=" + iID; else iID = "";
	var path = "/player/player.aspx?channel=" + iChannel + sType + iID;
	var w = window.open(path, "P5Lydavspiller", "toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=0, resizable=0, width=717, height=500, top=0, left=250");
	w.focus();
}	