function popupOpen(url,popUpWidth,popUpHeight,popUpOption){

	if(!popUpWidth)
		popUpWidth			=300;
	
	if(!popUpHeight)
		popUpHeight			=300;

	if(!popUpOption)
		popUpOption			="width="+popUpWidth+",height="+popUpHeight+",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,left=0,top=0";
	else
		popUpOption			="width="+popUpWidth+",height="+popUpHeight+','+popUpOption;


	var popUpWindowName	= null;
/*
	if( popUpWindowName != null )
	{
		self.popUpWindowName.close();
		self.popUpWindowName = null;

	}
*/
	var popUpWindow			=window.open(url,'',popUpOption);
	popUpWindow.focus();
	return;
}

function openPreview()
{ //¹Ì¸®º¸±â

	popUpWidth			=1100;
	popUpHeight			=758;

	popUpOption			="width="+popUpWidth+",height="+popUpHeight+",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,left=0,top=0";

	var popUpWindowName	= null;
	var preview_url = "http://weblog2-001.cafe24.com/main/";

	var popUpWindow			=window.open(preview_url,'',popUpOption);
	popUpWindow.focus();
	return;
}

function secession(server){
    
    if( server==null || server=="" ) return;

	var popUpFile				="https://"+server; //+"/src/php/secede/index.html";

	var popUpWidth			=767;
	var popUpHeight			=500;
	var popUpWindowName	="";
	var popUpOption			="width="+popUpWidth+",height="+popUpHeight+",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,left=0,top=0";
	var popUpWindow			=window.open(popUpFile,popUpWindowName,popUpOption);

	popUpWindow.focus();
	return;
}

function goClipBoard(sel_name) {
	var tempval=eval("document.all."+sel_name)
	tempval.focus();
	tempval.select();
	therange=tempval.createTextRange();
	therange.execCommand("Copy");

	alert("º¹»çµÇ¾ú½À´Ï´Ù. ºÙ¿©³Ö±â(Ctrl+v)¸¦ ÀÌ¿ëÇÏ½Ã¸é µË´Ï´Ù.");
}

