function BNX_CenterWindow(u,w,h,s,r){
	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='+s+',resizable='+r;
	var win = window.open(u,"",settings);
}

function BNX_ProductWin(u){
	w = 600;
	h = 400;
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings = 'scrollbars=yes,height='+ h +',width='+ w +',top='+TopPosition+',left='+LeftPosition;
	var win = window.open(u,"",settings);
}

function BNX_UnderlingWin(u){
	w = 600;
	h = 400;
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings = 'scrollbars=yes,height='+ h +',width='+ w +',top='+TopPosition+',left='+LeftPosition;
	var win = window.open(u,"",settings);
}

function BNX_NewsWin(u){
	w = 600;
	h = 400;
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings = 'scrollbars=yes,height='+ h +',width='+ w +',top='+TopPosition+',left='+LeftPosition;
	var win = window.open(u,"",settings);
}

function BNX_ErrWin(a){
	w = 400;
	h = 300;
	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;
	var win = window.open("error.asp?id="+a,"",settings);
}

function BNX_MsgWin(m){
	w = 300;
	h = 180;
	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;
	var win = window.open("#","",settings);
	win.document.write("<table width='100%' height='100%'>");
	win.document.write("<tr height='100%'><td valign='top' align='center'>"+m+"</td></tr>");
	win.document.write("<tr height='0%'><td align='center'><input type='button' value='¹Ø±Õ´°¿Ú' onclick='javascript:window.close()'></td></tr>");
	win.document.write("</table>");
}

function BNX_JobsWin(u){
	w = 400;
	h = 620;
	LeftPosition = (screen.width) ? (screen.width-w)/11 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/7 : 0;
	settings = 'scrollbars=yes,height='+ h +',width='+ w +',top='+TopPosition+',left='+LeftPosition;
	var win = window.open(u,"",settings);
}
