function flash(src, width, height)
{
    document.write(
        '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"' + (width ? ' width="'+width+'"' : '') + (height ? ' height="'+height+'"' : '') + ' id="padidintas" align="top">' + "\n" +
        '    <param name="allowScriptAccess" value="sameDomain" />'+ "\n" +
        '    <param name="movie" value="'+src+'" />'+ "\n" +
        '    <param name="salign" value="lt" />'+ "\n" +
        '    <param name="quality" value="high" />'+ "\n" +
        '    <param name="menu" value="false" />'+ "\n" +
        '    <param name="wmode" value="transparent" />'+ "\n" +
        '    <embed wmode="transparent" salign="lt" src="'+src+'" menu="false" quality="high"' + (width ? ' width="'+width+'"' : '') + (height ? ' height="'+height+'"' : '') + ' name="padidintas" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />' + "\n" +
        '</object>'
    );
}

function popup(URL, w, h) {
	if (!w) w = 700;
	if (!h) h = 650;
	window.open(URL, new Date().getTime(), 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width='+w+',height='+h);
	return false;
}