﻿var strPlayerUrl = "";
function playMP3(lngAudioID,intAudioType,intWidth,intHeight)
{
	var intLeft  = 100;
	var intTop   = 100;
	openBrowserWindow(strPlayerUrl+"?lngAudioID="+lngAudioID+"&intAudioType="+intAudioType,
		"Player",
		"location=no,"        +
		"status=no,"          +
		"menubar=no,"         +
		"scrollbars=no,"      +
		"resizable=no,"       +
		"left="+intLeft+","   +
		"top="+intTop+","     +
		"width="+intWidth+"," +
		"height="+intHeight
	);
}
