

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;
  }
 }


