function zoomImg(imgUrl){
	var htmlz = '<html><head><title>이미지보기</title></head>';
	htmlz += '<script type="text/javascript">';
	htmlz += 'window.onload = resize;';
	htmlz += 'function resize(){';
	htmlz += '	window.resizeTo(10, 10);';
	htmlz += '	var winHeight = document.body.scrollHeight;';
	htmlz += '	var winWidth = document.body.scrollWidth;';
	htmlz += '	window.resizeTo(winWidth, winHeight);';
	htmlz += '	var docHeight = document.body.clientHeight;';
	htmlz += '	var docWidth = document.body.clientWidth;';
	htmlz += '	var aa = ((winHeight-docHeight))+winHeight;';
	htmlz += '	var bb = ((winWidth-docWidth))+winWidth;';
	htmlz += '	window.resizeTo(bb, aa);';
	htmlz += '}';
	htmlz += '<\/script>';

	htmlz += '<img src="' + imgUrl + '" border="0" onclick="top.window.close();" style="cursor:pointer;">';
	var imagez = window.open('', "imagez", "width=1, height=1, top=0, left=0,  scrollbars=1, resizable=1,toolbar=0,menubar=0,location=0,directories=0,status=0"); 
	imagez.document.open(); 
	imagez.document.write(htmlz);
	imagez.document.close();
	if (imagez) imagez.focus();
}
/* Flash load(url, width, height) */
function getFlash(swfName, widLength, heiLength, id){
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="'+widLength+'" height="'+heiLength+'" id="'+id+'">');
	document.write('<param name="movie" value="'+swfName+'">');
	document.write('<param name="quality" value="high">');
	document.write('<param name="wmode" value="transparent">');
	document.write('<param name="allowScriptAccess" value="always">');
	document.write('<embed src="'+swfName+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+widLength+'" height="'+heiLength+'" allowScriptAccess="sameDomain"	wmode="transparent" id="'+id+'"></embed></object>');
}