<!--

 function popup(pop_id,pop_title,img_name,link_id)
 {
    
	big_img("popup/"+img_name);

    var param = "";
    var url = "";
	var option = "";

	option += "menubar=no,";
	option += "directories=no,";
	option += "resizable=no,";
	option += "status=yes,";
	option += "scrollbars=yes,";
	option += "toolbar=no,";
	option += "location=no,";
	option += "top=1,";
	option += "left=1,";
	option += "width="+w+",";
	option += "height="+h;

	param += "pop_id="+pop_id;
	param += "&pop_title="+pop_title;
	param += "&img_name="+img_name;
	param += "&link_id="+link_id;

	url = "popup.jsp?"+param;

	var eventCookie=getCookie(pop_id);

	if (eventCookie != pop_title) {	
		window.open(url,pop_id,option);
	}
 }

//--------------------------------------
function big_img(img) {
	foto1= new Image();
	foto1.src=(img);
	contImg(img);
}
function contImg(img) {
	if((foto1.width!=0)&&(foto1.height!=0)) {
		viewImg(img);
	} else {
		funzione="contImg('"+img+"')";
		intervallo=setTimeout(funzione,20);
	}
}
function viewImg(img) {

	w=foto1.width;
	h=foto1.height;

	w += plus_w;
	h += plus_h;

	//opt="width="+w+",height="+h;
	//finestra=window.open(img,"",opt);
}

function getCookie(name) { 

  var Found = false ;
  var start, end ;
  var i = 0 ;

  while(i <= document.cookie.length) {					// cookie ¹®ÀÚ¿­ ÀüÃ¼¸¦ °Ë»ö 

    start = i ;
    end = start + name.length ;

    if(document.cookie.substring(start, end) == name) { // name°ú µ¿ÀÏÇÑ ¹®ÀÚ°¡ ÀÖ´Ù¸é 
      Found = true;
      break;
    } 
    i++ ;
  } 

  if(Found == true) {									// name ¹®ÀÚ¿­À» cookie¿¡¼­ Ã£¾Ò´Ù¸é 
		start = end + 1;
		end = document.cookie.indexOf(";", start);
  
	  if(end < start)									// ¸¶Áö¸· ºÎºÐÀÌ¶ó´Â °ÍÀ» ÀÇ¹Ì(¸¶Áö¸·¿¡´Â ";"°¡ ¾ø´Ù) 
		end = document.cookie.length;

	  return document.cookie.substring(start, end);		// name¿¡ ÇØ´çÇÏ´Â value°ªÀ» ÃßÃâÇÏ¿© ¸®ÅÏÇÑ´Ù. 
  } 
  return "";											// Ã£Áö ¸øÇß´Ù¸é 

} 

//-->