// JavaScript Document
function oln_redir()  {
getUCMCookies();

{
		if (isUCMRegistered() != true) 
		    {
				loginform();
			}
		        else if (top.ORA_UCM_SRVC.services.indexOf("/EMP/") != -1) 
			{
			 studystart();
			 }
			 else if (top.ORA_UCM_SRVC.services.indexOf("/OLN/") != -1)
			 {
			 studystart();
			 }
	                 else if (top.ORA_UCM_SRVC.services.indexOf("/GMO/") != -1) 
			{
			 pl_no_check();
			}
		else

		{
			loginform();
               }
}
}
function loginform(){
	$('LoginArea').style.display = "block";
	$('start').style.display = "none";
	$('PLnoCheck').style.display = "none";
}

function studystart() {
	$('LoginArea').style.display = "none";
	$('start').style.display = "block";
	$('PLnoCheck').style.display = "none";
	}

function pl_no_check() {
	$('LoginArea').style.display = "none";
	$('start').style.display = "none";
	$('PLnoCheck').style.display = "block";
}

function MM_openBrWindow() { //v2.0
  window.open('pl-check.html','subwin','width=520,height=550,scrollbars=yes,resizable=yes');
}
