// JavaScript Document
//alert('fasd');
var AccBand=function(){
	
	this.bandsrc=document.getElementById(arguments[0]);
	if(this.bandsrc='')
	{
		//alert("ÔÝÎÞ¹ã¸æ!!");
		//this.bandsrc = '';
		return;
	}
	
	//this.bandsrc="";
	this.id="bandLayer1";
	this.width=this.height=this.left=this.right=200;
	if (typeof arguments[0] == "string") this.bandsrc=arguments[0];
	if (typeof arguments[1] == "number") this.width=arguments[1];
	if (typeof arguments[2] == "number") this.height=arguments[2];
	if (typeof arguments[3] == "number") this.left=arguments[3];
	if (typeof arguments[4] == "number") this.right=arguments[4];	
	if (typeof arguments[5] == "number") this.z_index=arguments[5];	
	if (typeof arguments[6] == "string") this.id=arguments[6];	
	//alert(this.bandsrc);
	}
	AccBand.prototype.show1=function(){
		var tmphtml="",banddiv;
		tmphtml='<div id="'+this.id+'" style="position:absolute;width:'+this.width+'px;height:'+this.height+'px;z-index:'+this.z_index+';left:'+this.left+'px;	top:'+this.top+'px;overflow:hidden;"><div id="Close'+this.id+'" style="top:2px; position:absolute;left:186px;cursor:hand;background:#000000; color:#FFFFFF;width:10px;height:10px;z-index:'+(this.z_index+1)+';overflow:hidden; line-height:10px;border:#ffffff 1px solid;line;font-size:7px;" align="center" >¡Á</div><div>#banddiv#</div></div>'
		banddiv='<iframe scrolling="no" width="'+this.width+'px" height="'+this.height+'px" src="'+this.bandsrc+'" frameborder="0"></iframe>';
		tmphtml=tmphtml.replace("#banddiv#",banddiv);
		//alert(tmphtml);
		document.write (tmphtml);
		eval("setclose('"+this.id+"')");
		
		
	};
	function setclose(id){		
	document.getElementById('Close'+id).onclick=function(){
		document.getElementById(id).style.visibility="hidden";	
			};	
		
		}
/*
<script language="javascript">
ab=new AccBand("http://www.vbs8.com/band/girl.html");
ab.bandsrc="http://www.vbs8.com/band/girl.html";
ab.top=750;
328
ab.show1();
</script>
*/