// Popup für Videos
function Showmovie(str_filename, str_link) {
	document.getElementById('popupmovie').style.display = 'block';
	document.getElementById('windowmovie').style.display = 'block';
	str_filename = str_filename + "?hl=de_DE&fs=1&color1=0xcccccc&color2=0xffffff&autoplay=1&rel=0";
	if(navigator.appVersion.indexOf('MSIE') == -1) {
		document.getElementById('productlink').href=str_link;
		document.getElementById('contentmovie').innerHTML = '<object type="application/x-shockwave-flash" style="width:640px; height:387px;" data="' + str_filename + '" width="640" height="387"><param name="movie" value="' + str_filename + '" /><param name="width" value="640" /><param name="height="390" /><param name="wmode" value="transparent" /></object>';
	} else {
		document.getElementById('productlink').href=str_link;
		document.getElementById('contentmovie').innerHTML = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" type="application/x-shockwave-flash" style="width:640px; height:387px;" data="' + str_filename + '" width="640" height="387"><param name="movie" value="' + str_filename + '" /><param name="width" value="640" /><param name="height="390" /><param name="wmode" value="transparent" /></object>';
		if(navigator.appVersion.indexOf('MSIE 6') > 0)
			window.scrollTo(0, 0);
	}
}

function Closemovie() {
	document.getElementById('popupmovie').style.display = 'none';
	document.getElementById('windowmovie').style.display = 'none';
	document.getElementById('contentmovie').innerHTML = '';
}

