/*
=========================================================
NorthWise Services website - Global functions library

Contains all the basic functions used throughout the
NorthWise Services and NorthWise Recruitment websites
=========================================================
-----------------------------------------------------
            Script credits listed below
   Modified by Robin North for pFusion:Design 2005
              www.pfusion-design.co.uk
                www.robinnorth.co.uk
------------------------------------------------------
*/

/* Toggle display script */
<!--
function hidetoggle (idtogg)
{
	document.getElementById(idtogg).style.display = (document.getElementById(idtogg).style.display == 'block') ? 'none' : 'block';
}

/*
Trigger code:

onClick="hidetoggle('ID'); return false;"
*/

/* New window script (c) Eric King */
var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings).focus()
}

/*
Trigger code:

onClick="NewWindow(this.href,'name','WIDTH','HEIGHT','yes');return false"
*/
//-->