function ow(url, width, height) {
    window.open(
	url,
	'popup',
	'toolbar=no,' +
	'location=no,' +
	'directories=no,' +
	'status=no,' +
	'menubar=no,' +
	'scrollbars=no,' +
	'resizeble=no,' +
	'resizeable=no,' +
	'copyhistory=no,' +
	'width=' + (width + 8) + ',' +
	'height=' + (height + 100)
    );
}

function om(urlImg, widthImg, heightImg, urlMov, widthMov, heightMov) {
    if(hasqt)
	window.open(
	    urlMov,
	    '_blank',
	    'width=' + (widthMov + 8) + ',' +
	    'height=' + (heightMov + 100) + ',' +
	    'resizable=yes,' +
	    'resizeable=yes,' +
	    'copyhistory=no,' +
	    'directories=no,' +
	    'scrollbars=no,' +
	    'location=no,' +
	    'toolbar=no,' +
	    'menubar=no,' +
	    'status=no'
	);
    else
	ow(urlImg, widthImg, heightImg);
}

function setQtClasses() {
    
}
