function wopen(srcW){
var _w;
_w=window.open(srcW,"","status=no,toolbar=no,location=no,menubar=no,resizable=yes,directories=no,scrollbars=yes");
}

function openCD(thisSrc,thisCompany){
var _w,_n;
_n="¹âÅÌÖÆ×÷°¸Àý";
if(thisCompany != null)_n=_n+" - "+thisCompany;
_w=window.open("","","status=no,toolbar=no,location=no,menubar=no,resizable=no,directories=no,scrollbars=no,width=400,height=400,alwaysRaised=yes","_blank");
_w.document.write("<TITLE>"+_n+"</TITLE>");
_w.document.write("<BODY BGCOLOR=#FFFFFF leftMargin=0 topMargin=0 rightMargin=0 bottomMargin=0>");
_w.document.write("<IMG SRC='"+"case/"+thisSrc+"'>");
_w.document.write("</BODY>");
_w.document.write("</HTML>");
_w.document.close()

//_w.document.body.leftMargin=0;
}

