function loadVideo(source, type_id, element_id, autostart, option1, width, height)
{
	var tid = (type_id == null) ? null : type_id;
	var eid = (element_id == null) ? 'abc' : element_id;
	autostart = (autostart == null) ? 'false' : autostart;
	width = (width != null) ? width : 320;
	height = (height != null) ? height : 272;
	
	var flashvars = {
		'file':source,
		'skin':path.template+'flash/mediaplayer-5.2-licensed/modieus.zip',
		'smoothing':'true',
		'autostart':autostart,
		'plugins':path.template_abs+'flash/mediaplayer-5.2-licensed/plugins/points.swf',
		'points.tid':tid, //type id goes here
		'points.eid':eid, //element id goes here
		'points.option1':option1
	};
	
	var params = {
		'allowFullScreen':'true',
		'wmode':'transparent'
	};
	
	var attributes = { 'name':'vid_player' };
	
	swfobject.embedSWF(path.template+"flash/mediaplayer-5.2-licensed/player.swf", "vid_player", width, height, "9.0.0","expressInstall.swf", flashvars, params, attributes);
}
