function openWin(sPage) {
  window.open(sPage,"",'toolbar=yes,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=600,height=500');
}
function ToggleMovieDiv(sid) {
	var html = '' +
	'<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="190" height="143" id="FLVPlayer">' +
    '    <param name="movie" value="http://www.gruenbeck.ch/teaser/FLVPlayer.swf" />' +
    '    <param name="salign" value="lt" />' +
    '    <param name="quality" value="high" />' +
    '    <param name="scale" value="noscale" />' +
    '    <param name="FlashVars" value="&MM_ComponentVersion=1&skinName=http://www.gruenbeck.ch/teaser/Clear_Skin_1&streamName=http://www.gruenbeck.ch/teaser/AWerbespotGrunbeckA&image=http://www.gruenbeck.ch/teaser/AWerbespotGrunbeckA&autoPlay=true&autoRewind=false" />' +
    '    <embed src="http://www.gruenbeck.ch/teaser/FLVPlayer.swf" flashvars="&MM_ComponentVersion=1&skinName=http://www.gruenbeck.ch/teaser/Clear_Skin_1&streamName=http://www.gruenbeck.ch/teaser/AWerbespotGrunbeckA&image=http://www.gruenbeck.ch/teaser/AWerbespotGrunbeckA&autoPlay=true&autoRewind=false" quality="high" scale="noscale" width="190" height="143" name="FLVPlayer" salign="LT" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />' +
    '</object>';
	document.getElementById(sid + '_image').style.display = 'none';
	document.getElementById(sid + '_show').innerHTML = html;
	document.getElementById(sid + '_show').style.display = 'block';
}

function openWinNamedSized(sPage, sWindowName, nWidth, nHeight) {
  var RndZahl = Math.random();
  RndZahl = parseInt(100000 * RndZahl);
  var sURL = "'toolbar=yes,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + nWidth + ",height=" + nHeight + "'";
  winRef = window.open(sPage,sWindowName + "_" + RndZahl,sURL);
  winRef.focus();
}
