//THIS FILE HAS BEEN CREATED BY ORCHID INFORMATION SYSTEMS
//www.orchidwebs.com
//UNAUTHORISED USE PROHIBITED.


//TO POP UP THE WINDOW FOR JOB APPLICATION FORM

function OpenNewWindow(formname)
{	
	
	if (window.external) 
	{
		Scene_Wnd = window.open(formname+'','WINDOW','scrollbars=yes,status=no,resizable=no,top=10,left=5,width=636,height=600');
		Scene_Wnd.focus();
	}
	else
	{
		Scene_Wnd = window.open(formname+'','WINDOW','scrollbars=yes,status=no,resizeable=no,top=10,left=5,width=636,height=600');
		Scene_Wnd.focus();
	}
}


//TO DISABLE THE RIGHT CLICK FUNCTION
var sorry="Sorry! This function has been disabled.\n\nPlease contact us for further information.\n\nContent Copyright 2005\nŠ Softesule Pvt. Ltd."

function click(e) {
if (document.all) {
if (event.button == 2) {
alert(sorry);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(sorry);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;



//UNAUTHORISED USE PROHIBITED.
//www.orchidwebs.com
//THIS FILE HAS BEEN CREATED BY ORCHID INFORMATION SYSTEMS