function openAndShowClip(productId, videoUrl, width, height)
{
	var movie
	var myWindow=window.open('','','width=360,height=376');
	var newWindowContent = '<!doctype html><html><head><style type="text/css">* { margin: 0; padding: 0; }</style><scr' + 'ipt type="text\/javascript" src="http:\/\/alutec.skryt.no/sitefiles/18/js/qtobject.js"><\/script><scr' + 'ipt type="text\/javascript">window.onload = function()\n{ \n var vObj = new QTObject("http:\/\/alutec.skryt.no'+videoUrl+'\", "'+productId+'\", "360", "376"); \n vObj.addParam("controller", "true"); \n vObj.addParam("autostart", "true"); \n vObj.addParam("target", "myself"); \n vObj.write("three-dee-video"); \n}<\/script></head><body><div id="three-dee-video"></div></body></html>'
	myWindow.document.write(newWindowContent);
	myWindow.document.close();
	myWindow.focus();
}	