I have the following XML file:

<?xml version="1.0" encoding="utf-8"?>
<sitetext>
<page id="about">
<paragraph id="par1">
<english>
this is an english test paragraph
</english>
<german>
dis is de german unt test paragrafe
</german>
</paragraph>
</page>
</sitetext>

How can I get the value of let's say: the english node in par1 by using XMLdom in serverside script?

How would I searh the xml file for a value where the attribute af a node = a parameter I pass?