var x = 100, y = 100
WIDTH=540, HEIGHT=400;
		
if( screen ) {
	x = Math.round( (screen.availWidth - WIDTH) / 2) ;
	y = Math.round( (screen.availHeight - HEIGHT) / 2);
}
		
function ePlayer( ID )
{
	eplayer =	window.open( "../eplayer/eplayer.htms?ID=" + ID, 'product',
							 'top='+y+',left='+x+',width='+WIDTH+',height='+HEIGHT+',resizable=no,scrollbars=no' );
	return false;
}
