// office.js  lives in /oeol  //
function unmask(element,state) {
var blockElement=document.getElementById(element);
blockElement.style.visibility=state;
}
var baskwindow=''; 
function open_bask(thestring) {
if (baskwindow.open) {baskwindow.close() } 
baskwindow=window.open(thestring,'basket2','width=1100,height=600,top=10,left=80,menubar,scrollbars,resizable');
return;  }

var detailwindow=''; 
function open_detail(thestring) {
if (detailwindow.open) {detailwindow.close() } 
detailwindow=window.open(thestring,'detail2','width=900 height=600,top=40,left=90,menubar,scrollbars,resizable'); 
}
var largewindow=''; 
function open_large(thestring) {
if (largewindow.open) {largewindow.close() } 
largewindow=window.open(thestring,'price2','width=900 height=600,top=40,left=140,menubar,scrollbars,resizable'); 
}
var smallwindow='';
function open_small(thestring) {
if (smallwindow.open) {smallwindow.close() } 
smallwindow=window.open(thestring,'small2','width=460,height=240,top=40,left=140,resizable');
}

