var allcookies = document.cookie;
var pos = allcookies.indexOf("IIIScope=");
if (pos != -1) {
var start = pos + 9;
var end = allcookies.indexOf(";", start);
if (end == -1) end = allcookies.length;
var IIIScope = allcookies.substring(start,end);
}


function AccessPAWeb1()
{
if (IIIScope == "71" || IIIScope == "39" || IIIScope == "93") {
alert("REQUESTING IS CURRENTLY NOT ALLOWED");
return false;
}
} 

