function videoload(url,position){
   
    document.getElementById('ProfileVideo').style.display = 'block';
    document.getElementById( "ProfileVideo" ).innerHTML = '<embed  src="' + url + '" quality="high" scale="exactfit" menu="false" bgcolor="#000000" width="412" height="288" swLiveConnect="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" /><div style="color:red;margin:10px" onClick="closeVideo()">close</div>';
    
    
}
function closeVideo(){
    document.getElementById('ProfileVideo').innerHTML = '';
    document.getElementById('ProfileVideo').style.display = 'none';
}
