function ppRichMedia(object, type) {

	

	// default flv playback

	var width = 783;

	var height = 430; 

	

	if (type == "mp3")

	{

		width = 322;

		height = 470;

	}

	

	var left = window.screen.width/2 - width/2;

	var top = window.screen.height/2 - height/2;

		

	window.open(object.href,'mh' + type ,'width=' + width + ',height=' + height + ',resizable=no,left=' + left + ',top=' + top + ',screenx=' + left + ',screeny=' + top);

	

	return false;

}

