var winOpen;

function MediaLaunch(strTitle, strPath){
	var windowName = 'mediaTarget';
	
	if (winOpen){
		winOpen.close();
	}
	
	windowName=window.open("",windowName,"scrollbars=yes,status=no,toolbar=no,directories=no,menubar=no,location=no,resizable=yes,left=20,top=20,height=425,width=425");
	windowName.document.write("<font color=navy size=3><b>" + strTitle + "</b></font><br><br>");
	windowName.document.write("<embed src='" + strPath + "' width='400' height='300' autoplay=true controller=true></embed>");
	windowName.document.write("<br><font size=1 name=arial>If file does not play, try this link: <a href='" + strPath + "'>" + strTitle + "</a><br></font>");
	windowName.document.write("<br><a href='javascript:window.close();'>Close</a>");
	windowName.focus();
	
	winOpen = windowName;
	
}