// 컨텐츠없음 팝업
function noneContent(){
var width = 100;
var height = 100;
var top = 10;
var left = 10;
var url = "/popup/view.do?popupKey=1";
window.open(url, "_popup1", "width="+width+",height="+height+",resizable=no,scrollbars=yes,top="+top+",left="+left);
}