﻿/*
** MenuFolding.js 로 대치됨
** 2007-02-12 12:15
** uniqoo@ntreev.com

function ToggleMenu(id){
	if(document.getElementById(id).style.display == 'block')
		document.getElementById(id).style.display = 'none';
	else
		document.getElementById(id).style.display = 'block';
}
*/

function Login(){
	var rUrl = URLEncode(window.location);
	var goUrl = '/Account/Login.aspx?rUrl=' + rUrl;
	window.location.href = goUrl;
}

function Logout(){
	window.location.href = '/Account/Logout.aspx';
}

function URLEncode(sStr) {
	return escape(sStr).replace(/\+/g, '%2B').replace(/\"/g, '%22').replace(/\'/g, '%27').replace(/\//g,'%2F');
}