
function mailto (param) {

        ///// Définir les variables
		var theURL = 'http://www.tsr.ch/tsr/index.html?siteSect=750004&lastUrl=http://www.tsr.ch/tsr/index.html?siteSect=750010&m_Id='+ param + '&title=Visionnez une video de la serie Histoire des Savoirs';
		var theName = 'tsr.ch';
		var theWidth = '360';
		var theHeight = '480';
		
		
		
		
        //var tempScrollStr = 'scrollbars=no,';
        //if ((theScroll != null) && (theScroll == false)) { tempScrollStr = ''; }

        ///// Parameter String erstellen und Fenster oeffnen
        var tempParamStr = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,width=' + theWidth + ',height='+theHeight;
        
		
		var tempWin = window.open (theURL, theName, tempParamStr);
        tempWin.focus();

        return true;
        }




