
function fcs(obj){/*¾ÆÀÌµð, ÆÐ½º¿öµå*/
	obj.style.background='';
	 obj.style.backgroundColor='white';
}

function winOpen(url,w,h,wname,fname) { /*°áÈ¥¿¹Á¤ÀÏ*/
	var newWin;

	LP=(screen.width)?(screen.width-w)/2:100;
	TP=(screen.height)?(screen.height-h)/3:100;

	setting = "height="+h+",width="+w+",top="+TP+",left="+LP;
	newWin = window.open(url+"?fname="+fname,'',setting);
	newWin.focus();
}

var win = null;
function NewWindow(mypage,myname,w,h,scroll){ /*¿þµùÄÝ·º¼Ç,ÇÁ¸®½ºÅ¸ÀÏ*/
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
	win = window.open(mypage,myname,settings)
}

function NewWindow1(mypage,myname,w,h,scroll){ /*»ó´ã*/
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
	win = window.open(mypage,myname,settings)
}
