﻿ /*    Generic JS code and  Particular website data -  Impressum, Language Independant   */


function impressum(classnamex)
{
	document.write("<p class='" + classnamex + "' style='text-align:center'><br /><b>Impressum:</b><br /><br />" +
	"Altfränkische-Weinstube<br />Inn Keeper Mario Beckh<br />Klosterhof 7, 91541 Rothenburg o.d.T.  <br />Phone: 09861-6404, Fax 09861-6410 <br />" +
	"<a href='mailto:altfraenkische-weinstube@web.de'>Email: altfraenkische-weinstube@web.de</a></p>");
}

function imglogo(classnamey)
{
	var filenam = "../images/logo.jpg"; 
	var imgw = Math.floor(200 * scrw / 1024);
	var imgh = Math.floor(200 * scrw / 1024);
	document.write("<img src='"+ filenam + "'  width='" + imgw + "' height='" + imgh + "'  name='logo'  alt='Logo'  " +
	"class='" + classnamey + "' /><br />");
} 

function logoinfo(classname)
{
	
	document.write("<div align='center'>");imglogo(classname); 	impressum(classname);document.write("<br /></div>");
} 


function impressumbn(visibletxt,linkcmd,classname)
{
	var fontsz = pfont - 4;
	document.write("<style type='text/css'>p.impressbn {font-size:" + fontsz + "px;}</style>");  
	document.write("<p class='impressbn'><a  href='" + linkcmd +"'  class='" + classname + "'>" + visibletxt +  "</a></p>");
}

function pricesrm(onebed,twobed,threebed,including)
{
	document.write( onebed + " 51-69 €, " + twobed + " 71-98 €, " + threebed + " 95-120 €"  + including );
}




