<!--

// alert 메시지 창 띄우기
function msg_alert(str)
{
	alert(str);
	return;
}

// javascript popup function 
function java_popup(url,val,name,wid,hei,scroll)
{
	window.open(url+val,name,'width='+wid+',height='+hei+',left=10,top=10,scrollbars='+scroll);
}


function imageAutoResize(image_URL){
  full_image = new Image();
	full_image["src"] = image_URL;

	// Netscape 때문에 다음 코드를 넣어줌
	//var str = "";
	//for (var propName in full_image) {
	//	str += propName + ":" + full_image[propName] + ", ";
	//}
	//alert(str);
		
	i = 0;
	img_width = 0;
	img_height = 0;
	var str = "";
	
	// Netscape 때문에 Loop 넣어줌
	do {
   		i += 1;
   			
   		img_width = full_image["width"];
		img_height = full_image["height"];
		str += i + "= width:" + img_width + ", height:" + img_height + "\n";
	} while(i < 40 && (img_width == "0"  || img_height == "0"));

	if(img_width == "0" || img_height == "0")
	{
		img_width = 600;
		img_height = 500
	}
	else
	{	
		//if(img_width > 660)
		//	img_width = 660;
		//if(img_height > 500)
		//	img_height = 500;

		img_width += 40;
		img_height += 45;
	}


	var full_win = window.open(image_URL, "full_image_win", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=yes,Width="+img_width+",Height="+img_height);
	full_win.focus();
}


function onlyNumber(){
  if((event.keyCode<48) || (event.keyCode>57))   {
    alert('Please insert number');
    this.focus();
    event.returnValue=false;
  }
}

function Sendmsg(name)
{
	window.open('/guideinfo/guide_email.asp?name='+name,'cancel','width=500,height=380');
}
//-->
