function popup(url,name,width,height,scroll){ // Áß¾Ó ¿ÀÇÂÃ¢
	xposition = (self.screen.width/2) - (width/2);
	yposition = (self.screen.height/2) - (height/2);
	position = "left=" + xposition + ",top=" + yposition + ",width="+width+",height="+height+",scrollbars="+scroll;
	window.open(url,name, position);
}

function HelpView(layer) {
	var layer=eval(layer+".style");
	if(Bank.style.display!='none') HelpHidden('Bank');
	if(Customer.style.display!='none') HelpHidden('Customer');
	if(Hard.style.display!='none') HelpHidden('Hard');

	layer.posLeft=document.body.clientWidth/2+document.body.scrollLeft-250;
	layer.posTop=document.body.clientHeight/2+document.body.scrollTop-170;
	layer.display="";
}

function HelpHidden(layer){
	var layer=eval(layer+".style");
	layer.display='none';
}

