Question : citrix

Explain clearly the difference between Level 1,Level 2,  and Level 3 from the point of view of Citrix profile and technical perspective . Thanks In advance

Answer : citrix

try this too :

1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
<SCRIPT LANGUAGE="JavaScript"> 
function checkKey(e) {
	var alt =  e.altKey;
	var key = e.keyCode;
	var type = e.srcElement.type;
	ctrl = event.ctrlKey
	if ( alt || ((key == 8)&&(type != "text" && type != "textarea" && type != "password")) || (ctrl&&(key == 82)) || (key == 122) ) {
		event.keyCode = 0;
		event.returnValue = false;
                return false;
	}
        return true;
}
</SCRIPT>
<body onkeydown="return checkKey(event)">
Random Solutions  
 
programming4us programming4us