/*if( document.all && !document.getElementById ) {	document.getElementById = function( id ) {		return document.all[ id ];	}}*/var nordbotPopup;function popUpWindow( URLStr, width, height ) {	if( nordbotPopup ) {		if( !nordbotPopup.closed ) nordbotPopup.close();	} 	nordbotPopup = open( URLStr, 'nordbotPopup', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbar=no,resizable=yes,copyhistory=yes,width='+ ( parseInt( width ) + 20 ) + ',height='+ ( parseInt( height ) + 20 ) );}window.addEvent( 'domready' , function() {	var contact_slide = new Fx.Slide( 'contact-us', { transition:Fx.Transitions.Cubic.easeOut } );	contact_slide.hide();	$( 'nav-contact' ).addEvent( 'click', function( e ) {		e = new Event( e );		contact_slide.toggle();		e.stop();	} );	$( 'contact-close' ).addEvent( 'click', function( e ) {		e = new Event( e );		contact_slide.slideOut();		e.stop();	} );	} );function toggle_contactUs() {	document.getElementById( 'contact-us' ).style.display = ( document.getElementById( 'contact-us' ).style.display != 'block' ) ? 'block' : 'none';	return false;}