

function setCookie(name,value,expiredays) {	
	var today = new Date();
	today.setDate(today.getDate()+expiredays);
	document.cookie = name + "=" + escape(value) + "; path=/; expires=" + today.toGMTString() + ";";
}

function getCookie( name ) {
   var nameOfCookie = name + "="; 
   var x = 0; 
   while ( x <= document.cookie.length ) 
   { 
		   var y = (x+nameOfCookie.length); 
		   if ( document.cookie.substring( x, y ) == nameOfCookie ) { 
				   if ( (endOfCookie=document.cookie.indexOf( ";", y )) == -1 ) 
						   endOfCookie = document.cookie.length; 
				   return unescape( document.cookie.substring( y, endOfCookie ) ); 
		   } 
		   x = document.cookie.indexOf( " ", x ) + 1; 
		   if ( x == 0 ) 
				   break; 
   } 
   return ""; 
}




function popupLocationGo(url, target){
	if (target == 1) //부모창... 요기는 현재 자신창
	{
		location.href= url;
	}
	else
	{
		window.open(url, '', '');
	}
}

var httpRequest = null; //getXMLHttpRequest() 함수로 생성한 객체를 저장하기위한 전역변수

 function getXMLHttpRequest(){
  if(window.ActiveXObject){
   try{
    return new ActiveXObject("Msxml2.XMLHTTP");
   }catch(e){
    try{
     return new ActiveXObject("Microsoft.XMLHTTP");   //IE 에서 XMLHttpRequest 객체 구하기 
    }catch(e1){
     return null;
    }
   }
  }else if(window.XMLHttpRequest){   //IE 이외의 파이어폭스, 오페라 같은 브라우저에서 XMLHttp
   return new XMLHttpRequest();         //Request 객체 구하기 
  }else{
   return null;
  }
 }

