// JavaScript Document
//loading flash bg 
var loadBackgroundFlashContent	=	function(swfSrc,imgTarget,imgSrc,noflashimages,strWidth,strHeight){
	 
    if(!strWidth) {
        strWidth = "100%"
    }
    if(!strHeight) {
        strHeight = "100%"
    }
    if(!noflashimages) {
        noflashimages = base_path+"images/bg_home.jpg"
    }
	
    if (swfobject.hasFlashPlayerVersion("9.0.18")) {

        var fn = function() {
            var att = {
                data:swfSrc,
                width:strWidth,
                height:strHeight
            };
            var par = {
                flashvars:"file="+base_path+imgSrc,
                wmode:'opaque'
            };
            var id = imgTarget;
            var myObject = swfobject.createSWF(att, par, id);
        };
        swfobject.addDomLoadEvent(fn);
	  
    }else{
        document.getElementById(imgTarget).innerHTML	=	' <img src="'+noflashimages+'" alt="Welcome to Infinity WebSite" title="Welcome to Infinity WebSite"/>';
    }
}

