/* Á¦Ç°¼Ò°³, ·¹ÀÌ¾Æ¿ô¼Ò°³
------------------------------------------------------------------------------------------------------*/
var oldM = "m1";
var numN = 1;

function chM(numM)
{
	var selM = "m" + numM;

	document.getElementById(oldM).style.display = "none";
	document.getElementById(selM).style.display = "block";
	oldM = selM;
	numN = numM;

	tranVar(numM);
}


var oldN = "n1";
function chN(numN)
{
	var selN = "n" + numN;

	document.getElementById(oldN).style.display = "none";
	document.getElementById(selN).style.display = "block";
	oldN = selN;
}

function tranVar(numY)
{
	return;
}

/* Æ¯¼ºº° ·¹ÀÌ¾Æ¿ô1 - Popup 
------------------------------------------------------------------------------------------------------*/
function layout_pop1(type, itemName){
	var popUrl = "http://e-fursys.com/home/layout/" + type + "/popup/pop_" + itemName + ".html" ;
	var winPop = window.open(popUrl, "winItems", "width=520,height=670");
	winPop.focus();
}
//EXPACE ¹Ì´ÏÈ¨ÇÇ
function expace()
	{
		var screenX = screen.width;
	    var screenY = screen.height;
		var intWidth = 1024;
		var intHeight = 768;
	  	var tempX = (screenX - 1024) /2;
		var tempY = (screenY - 768) /2;
		window.open('http://www.fursys.com/product/panel/expace.asp','lotze', 'left=' + tempX + ',top=' + tempY + ',width=' + intWidth + ',height=' + intHeight + ',toolbar=0,menubar=0,status=0,scrollbars=0,resizable=0');
		opener = self;
		//self.close();
}
