﻿function PlayFlv(div_id, flv_path, img_path, autostart, width, height) 
{
    var so = new SWFObject('/Public/Client/flash/mediaplayer.swf', 'MediaPlayer', width, height, '8');
	so.addParam('allowscriptaccess','always');
	so.addParam('allowfullscreen','true');
	so.addParam('wmode','transparent');
	so.addVariable('width', width);
	so.addVariable('height', height);
	so.addVariable('file', flv_path.replace('~/', '/'));

	if (img_path != '')
	    so.addVariable('image', img_path.replace('~/', '/'));

	if (autostart)
       so.addVariable('autostart', 'true');
	
	so.write(div_id);
}

function ResetDefault() {
    document.hlForm.contact_name.value = '';
    document.hlForm.contact_email.value = '';
    document.hlForm.contact_title.value = '';
    document.hlForm.contact_content.value = '';

    document.hlForm.contact_address.value = '';
    document.hlForm.contact_tel.value = '';
    document.hlForm.contact_company.value = '';
}


