function javascriptCheck(phpsessid, h)
{
		var Ajax = new AjaxRequest(); 		
		
		if( Ajax.mRequest )
		{			
			Ajax.addEventListener( REQ_COMPLETE, handleServerResponse );

			Ajax.mRequest.open( "POST", "/ajax/detectJavascript.php?PHPSESSID="+phpsessid+"&h="+h , true);
			
			Ajax.mRequest.send( '1' );					
		}
	
}

function handleServerResponse(pAjax) 
{	
		if (pAjax.mRequest.status == 200)
		{
	
		}
		else
		{
	
		}
}     


