exchRate = 36;
exchRateGBP = 0.75;
function getRUB(price) { 
document.write(price * exchRate); 
} 
function getGBP(price) { 
document.write(Math.round(price * exchRateGBP)); 
} 



function upmenu()
{
document.write('<div style="position:absolute;left:150px;top:1px;">');
document.write('<a href="contract.html" style="color:black;font-size:11px;font-weight:bold;" onMouseover="style.textDecoration=\'underline\';" onMouseout="style.textDecoration=\'none\';">contract</a>');
document.write('&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;&nbsp;');
document.write('<a href="list.html" style="color:black;font-size:11px;font-weight:bold;" onMouseover="style.textDecoration=\'underline\';" onMouseout="style.textDecoration=\'none\';">list of properties</a>');
document.write('&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;&nbsp;');
document.write('<a href="construction.html" style="color:black;font-size:11px;font-weight:bold;" onMouseover="style.textDecoration=\'underline\';" onMouseout="style.textDecoration=\'none\';">pictures from construction</a>');
document.write('');
document.write('');
document.write('');
document.write('');
document.write('');
document.write('</div>');
document.write('');
document.write('');
document.write('');

//document.write('<div id="jj1" class="scrollable" scrollspeed="100" orientation="horizontal" style="height:20px;width:760px;border:0px solid silver;">');

//document.write('	<b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;');
//document.write('Prices will be increased with 20% on 10.12.2007 </b>');
	
//document.write('</div>');

}

