
<!-- START ONMOUSOVER SHOW BIG PICTURE -->

var ie=document.all
var ns6=document.getElementById&&!document.all

function ietruebody(){
return (document.compatMode && document.compatMode!="BackCompat" && !window.opera)? document.documentElement : document.body
}

function enlarge(which, e, position, imgwidth, imgheight){
if (ie||ns6){
crossobj=document.getElementById? document.getElementById("showimage") : document.all.showimage
if (position=="center"){
pgyoffset=ns6? parseInt(pageYOffset) : parseInt(ietruebody().scrollTop)
horzpos=ns6? pageXOffset+window.innerWidth/2-imgwidth/2 : ietruebody().scrollLeft+ietruebody().clientWidth/2-imgwidth/2
vertpos=ns6? pgyoffset+window.innerHeight/2-imgheight/2 : pgyoffset+ietruebody().clientHeight/2-imgheight/2
if (window.opera && window.innerHeight) //compensate for Opera toolbar
vertpos=pgyoffset+window.innerHeight/2-imgheight/2
vertpos=Math.max(pgyoffset, vertpos)
}
else{
var horzpos=ns6? pageXOffset+e.clientX : ietruebody().scrollLeft+event.clientX
var vertpos=ns6? pageYOffset+e.clientY : ietruebody().scrollTop+event.clientY
}
crossobj.style.left=horzpos+"px"
crossobj.style.top=vertpos+"px"

crossobj.innerHTML='<div align="left" id="dragbar"><span id="closetext" onClick="closepreview()" style="cursor:hand; color:ffffff" >Close Window</span> </div><img src="'+which+'">'
crossobj.style.visibility="visible"
return false
}
else //if NOT IE 4+ or NS 6+, simply display image in full browser window
return true
}

function closepreview(){
crossobj.style.visibility="hidden"
}

function drag_drop(e){
if (ie&&dragapproved){
crossobj.style.left=tempx+event.clientX-offsetx+"px"
crossobj.style.top=tempy+event.clientY-offsety+"px"
}
else if (ns6&&dragapproved){
crossobj.style.left=tempx+e.clientX-offsetx+"px"
crossobj.style.top=tempy+e.clientY-offsety+"px"
}
return false
}

function initializedrag(e){
if (ie&&event.srcElement.id=="dragbar"||ns6&&e.target.id=="dragbar"){
offsetx=ie? event.clientX : e.clientX
offsety=ie? event.clientY : e.clientY

tempx=parseInt(crossobj.style.left)
tempy=parseInt(crossobj.style.top)

dragapproved=true
document.onmousemove=drag_drop
}
}

document.onmousedown=initializedrag
document.onmouseup=new Function("dragapproved=false")

<!-- END ONMOUSOVER SHOW BIG PICTURE -->





<!--START CHECK MAIL FORM -->

function CheckForm() {

	if (document.mail.thename.value==""){
		window.alert("Please insert your first & last Name");
		mail.thename.focus();
		return false;
	}
	
	if (document.mail.email.value=="" || document.mail.email.value.indexOf('@')==-1){
		window.alert("Please insert a legal Email address");
		mail.email.focus();
		return false;
	}
	
	
	if (document.mail.company.value==""){
		window.alert("Please insert Company name");
		mail.company.focus();
		return false;
	}
		
	if (document.mail.CompanyPosition.value==""){
		window.alert("Please insert your Position");
		mail.CompanyPosition.focus();
		return false;
	}
	
	
	if (document.mail.Telephone.value==""){
		window.alert("Please insert your Telephone No");
		mail.Telephone.focus();
		return false;
	}
		
	
	
		
	document.mail.submit();
	
	}


function Cleanform(){
	document.mail.reset();
}

<!--END mail CHECK Individual FORM -->



<!-- START WINDOW POPUP -->
var win = null;
var win1 = null;  


function NewWindow(mypage,myname,w,h,scroll){

LeftPosition =  (screen.width/2)-(w/2);
TopPosition =  (screen.height/2)-(h/2);


settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable,status=no'
win = window.open(mypage,myname,settings)
}



function NewWindowSmall(mypage,myname,w,h,scroll){
LeftPosition =  (screen.width/2)-(w/2);
TopPosition =  (screen.height/2)-(h/2);


settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'


win = window.open(mypage,myname,settings)
}

<!--END POP UP WIN  -->


