
var date = new Date();


function popref(ref)
{
	window.open(ref);
}



         
function createYoutTubeVideo(div_id,width,height,mediaId)
{
   
    var d = document.getElementById(div_id);
    
    document.write('<object width="'+width+'" height="'+height+'">' +
                    '<param name="movie" value="http://www.youtube.com/v/'+mediaId+'"></param>'+
                    '<param name="wmode" value="transparent"></param>'+
                    '<embed src="http://www.youtube.com/v/'+mediaId+'" type="application/x-shockwave-flash" wmode="transparent" width="'+width+'" height="'+height+'" wmode="transparent"></embed></object> ');
}



         
function createGenericFlashObject(div_id,width,height,movieSrc)
{
   
    var d = document.getElementById(div_id);
    
    document.write('<object width="'+width+'" height="'+height+'">' +
                    '<param name="movie" value="'+movieSrc+'"></param>'+
                    '<param name="wmode" value="transparent"></param>'+
                    '<embed src="'+movieSrc+'" type="application/x-shockwave-flash" wmode="transparent" width="'+width+'" height="'+height+'" wmode="transparent"></embed></object> ');
}