// JavaScript Document
function loadDemo() {
	var frameset=parent.document.getElementById("set");
//	frameset.cols="200,580,*";
//	top.treeframe.location="tree_ro.htm";
//	top.basefrm.location="right_ro.htm";
        frameset.cols="0,780,*";
	top.treeframe.location="blank.htm";	
	top.basefrm.location="demo_ro.htm";
}

function loadOther(strURL) {
	var frameset=parent.document.getElementById("set");
	frameset.cols="150,630,*";
	top.treeframe.location="left_ro.htm";
	top.basefrm.location=strURL;
}

function loadShop(intLangId) {
	var frameset=parent.document.getElementById("set");
        frameset.cols="0,780,*";
	top.treeframe.location="blank.htm";
	top.basefrm.scrolling="no";	
	top.basefrm.location="shop/products.aspx?cmbLanguageId="+intLangId;
}

