// JavaScript Document
function init() {
	var menuframe = document.getElementById('menuframe');
	var iframestring = '<iframe height="200" width="200" name="flashmenu" style="border:0px none #FFFFFF;" frameborder="0" scrolling="no" src="flashmenu.php?page='+parentpage+'&lang='+lang+'" />';
	menuframe.innerHTML = iframestring;
}
function changeLang(obj) {
	var mLink = url+"?p="+page+"&l="+obj[obj.selectedIndex].value;
	location.href = mLink;
}
function openProductForm(termek) {
	window.open("product.php?l="+lang+"&t="+termek,"product","width=400,height=300");
}
// Objects
var flo = function (flashurl, name, width, height, version, color) {
	this.flash = flashurl;
	this.ver = version;
	this.width = width;
	this.height = height;
	this.name = name;
	this.color = color;
	this.string = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version='+this.ver+'" width="'+this.width+'" height="'+this.height+'" id="'+this.name+'_flash" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="'+this.flash+'" /><param name="quality" value="high" /><param name="bgcolor" value="'+this.color+'" /><embed src="'+this.flash+'" quality="high" bgcolor="'+this.color+'" width="'+this.width+'" height="'+this.height+'" name="'+this.name+'_flash" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>';
	this.show = function() {
		document.getElementById(this.name).innerHTML = this.string;
	}
}