function playasound(thesound,thename,thecredits)
{
//get center coords
	width = 550;
	height = 475;
	var leftPosition = (screen.width - width) / 2;
    var topPosition = (screen.height - height) / 2;
	
	//newWindow = window.open('../loader.php?video="'+thesound+'"&title="'+thename+'"'+'"&credit="'+thecredits+'"','theWinName','left=10,top=10,width=600,height=550,status=no,toolbar=no,resizable=no,scrollbars=no,menubar=no'); 
	
	
newWindow = window.open('','theWinName', 'width=' + width + ',height=' + height + ',left=' + leftPosition + ',top=' + topPosition + ',toolbar=0,scrollbars=no,location=0,statusbar=0,menubar=0,resizable=no');
	
//	newWindow = window.open('','theWinName','left=50,top=50,width=550,height=450,status=no,toolbar=no,resizable=no,scrollbars=no,location=1,menubar=no'); //just adding ,status=no,toolbar=no,resizable=no,scrollbars=no,menubar=no  


	var s=parent.newWindow.document;
	s.write('<HTML><HEAD></HEAD><body onLoad="window.focus()" bgcolor=#000000>');
	s.write('<DIV ALIGN="CENTER"><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" WIDTH="500"><TR><TD width="500" align="center">');
	s.write('<object CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="480" height="370" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">');
	s.write('<param name="autoplay" value="true">');
	s.write('<param name="loop" value="false">');
	s.write('<param name="controller" value="true">');
	s.write('<param name="src" value="'+thesound+'" bgcolor="#000000">');
	s.write('<embed src="'+thesound+'" width="480" height="370" autoplay="true" loop="false" controller="true" bgcolor="#000000" pluginspage="http://www.apple.com/quicktime/"></embed></object>');
	s.write('<P><font face="Verdana, Arial, Helvetica, sans-serif" size="-3" color="\#c1c1c1">');
	s.write('Now playing <B>"',thename,'"</B><br/>'+thecredits+' </font></P>');
	s.write('</TD></TR></TABLE></DIV></body></html>');
	s.close();
	/**/
}
