//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=760,height=530');
		Scene_Wnd.focus();
	}
	else
	{
		Scene_Wnd = window.open(formname+'','WINDOW','scrollbars=yes,status=no,resizeable=no,top=10,left=5,width=760,height=530');
		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 2006\nŠ Sshreeji Traders."

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;

// ----------------------------------------------------------------------------------------------------------

//TO DISPLAY A RANDOM PROJECT SHOWCASE IMAGE

function randomNum(max) {
  var rNum=NaN
  while (isNaN(rNum)) {
    rNum=Math.floor(Math.random()*(max))
  }
  return rNum
}

//	SHOULD CONTAIN ALL RANDOMIZED PIX
var pic = new Array()
pic[0]="../imgz/randimg00.jpg"
pic[1]="../imgz/randimg01.jpg"
pic[2]="../imgz/randimg02.jpg"
pic[3]="../imgz/randimg03.jpg"
pic[4]="../imgz/randimg04.jpg"
pic[5]="../imgz/randimg05.jpg"
pic[6]="../imgz/randimg06.jpg"
pic[7]="../imgz/randimg07.jpg"
pic[8]="../imgz/randimg08.jpg"
pic[9]="../imgz/randimg09.jpg"
pic[10]="../imgz/randimg10.jpg"
pic[11]="../imgz/randimg11.jpg"
pic[12]="../imgz/randimg12.jpg"
pic[13]="../imgz/randimg13.jpg"
pic[14]="../imgz/randimg14.jpg"
pic[15]="../imgz/randimg15.jpg"
pic[16]="../imgz/randimg16.jpg"
pic[17]="../imgz/randimg17.jpg"
pic[18]="../imgz/randimg18.jpg"
pic[19]="../imgz/randimg19.jpg"
pic[20]="../imgz/randimg20.jpg"
pic[21]="../imgz/randimg21.jpg"
pic[22]="../imgz/randimg22.jpg"
pic[23]="../imgz/randimg23.jpg"
pic[24]="../imgz/randimg24.jpg"
pic[25]="../imgz/randimg25.jpg"
pic[26]="../imgz/randimg26.jpg"
pic[27]="../imgz/randimg27.jpg"
pic[28]="../imgz/randimg28.jpg"
pic[29]="../imgz/randimg29.jpg"
pic[30]="../imgz/randimg30.jpg"
pic[31]="../imgz/randimg31.jpg"
pic[32]="../imgz/randimg32.jpg"


imgTag1='<img class="randimg" src="'
imgTag1+=pic[randomNum(pic.length)]
imgTag1+='" width="600" height="160">'

// ----------------------------------------------------------------------------------------------------------

//UNAUTHORISED USE PROHIBITED.
//www.orchidwebs.com
//THIS FILE HAS BEEN CREATED BY ORCHID INFORMATION SYSTEMS