function displayWindow(url, width, height) 
{
	window.open( url , "displayWindow" , 'width=' + width + ' , height=' + height + ' , resizable=0 , scrollbars=yes , menubar=no' ) ; 
}

document.observe( "dom:loaded" , function( )
{
	var contactLink = $( 'contactLink' ) ;
	if( contactLink )
	{
		contactLink.onclick = function( )
		{
			displayWindow( contactLink.href , 466 , 463 ) ;
			return false ;
		} ;
	}
} ) ;