//THIS FILE HAS BEEN CREATED BY ORCHID INFORMATION SYSTEMS
//www.orchidwebs.com
//UNAUTHORISED USE PROHIBITED.


//TO POP UP THE WINDOW FOR VARIOUS SECTORS

function OpenNewWindow(formname)
{	
	
	if (window.external) 
	{
		Scene_Wnd = window.open(formname+'','WINDOW','scrollbars=yes,status=no,resizable=no,top=10,left=440,width=550,height=650');
		Scene_Wnd.focus();
	}
	else
	{
		Scene_Wnd = window.open(formname+'','WINDOW','scrollbars=yes,status=no,resizeable=no,top=10,left=440,width=550,height=650');
		Scene_Wnd.focus();
	}
}

//TO POP UP THE WINDOW FOR SNAPSHOTS / IMAGES

function OpenSnapWindow(formname)
{	
	
	if (window.external) 
	{
		Scene_Wnd2 = window.open(formname+'','WINDOW2','scrollbars=no,status=no,resizable=no,top=190,left=430,width=420,height=330');
		Scene_Wnd2.focus();
	}
	else
	{
		Scene_Wnd2 = window.open(formname+'','WINDOW2','scrollbars=no,status=no,resizable=no,top=190,left=430,width=420,height=330');
		Scene_Wnd2.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 2002-2006\nŠ Wizcraft International Entertainment 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
