//**ÆäÀÌÁö ÀÌµ¿
function getUrl(url){
	parent.document.location.href = url;
}
function getUrls(url){
	location.href = url;
}

// °¡¿îµ¥ »õÃ¢¿­±â ½ºÅ©¸³
function OpenWindow(theURL,winName,w,h,pL,pT) {
	if(pL == "" && pT == ""){
		winl = (screen.width - w) / 2;
		wint = (screen.height - h) / 2;
	}else{
		winl = pL;
		wint = pT;
	}
	features = 'width='+w+',height='+h+',top='+wint+',left='+winl+',noresize,scrollbars=no';
	window.open(theURL,winName,features);
}