function Swf_View(URL,SizeX,SizeY,LnkId,Frm,Flag) // quick
{
    document.write('            <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ');
    document.write('                    codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" ');
    document.write('                    width="'+SizeX+'" height="'+SizeY+'"  id="'+LnkId+'" align="middle">');
    document.write('            <param name="movie"     value="'+URL+'" />');
    document.write('            <param name="quality"   value="high" />');
    if ( Flag == null || Flag != 'N' )
    {
        document.write('        <param name="wmode"     value="transparent"/>');
    }
	document.write('			<param name="allowScriptAccess" value="always"/> ');
	document.write('			<param name="base" value="." />');
    document.write('            <embed base="." src="'+URL+'" quality="high" width="'+SizeX+'" height="'+SizeY+'"  align="middle" ');
	 if ( Flag == null || Flag != 'N' )
    {
        document.write('       		wmode="transparent" ');
    }
    document.write('           		type="application/x-shockwave-flash" pluginspage="https://www.macromedia.com/go/getflashplayer" allowScriptAccess="always" swLiveConnect=true name="'+LnkId+'"  />');
    document.write('            </embed></object>');
	if ( Frm == 'Y' ) { 
		eval("window." + LnkId + " = document.forms[0]."+ LnkId +"; ");
	}
}

function parseIPT(obj) {
	var HD = "IPT_";
	var UMA = Array("OBJECT", "EMBED");
	var str;
	
	str = obj.innerHTML;
	for(i = 0; i < UMA.length; i++) {
		str = eval("str.replace(/" + HD + UMA[i] +"/g, \"" + UMA[i] + "\");");
	}	
	
	obj.innerHTML = str;
}

ScroolTop = function(className, id) {
    this.IE = document.all ? 1 : 0;
    this.NN = document.layer ? 1 : 0;
    this.N6 = document.getElementById ? 1 : 0;
    if(this.IE) this.layer = document.all(id);
    else if(this.NN) this.layer = document.layer[id];
    else if(this.N6) this.layer = document.getElementById(id);
    else return;
    this.className = className;
    this.top = this.oldY = parseInt(this.layer.style.top,10);
    setInterval(this.className + ".move()", 10);
    }
    ScroolTop.prototype.move = function() {
        var diffY = (this.IE) ? document.documentElement.scrollTop+this.top : self.pageYOffset+this.top; 
        if(diffY != this.oldY) {
            var percentY = .1 * (diffY - this.oldY);
            percentY = (percentY > 0) ? Math.ceil(percentY) : Math.floor(percentY);
    
            this.oldY += percentY;
            this.layer.style.top = this.oldY + "px";
        }
    }
