function navig_link_over(ind,col) {
	if(document.all) {
		document.all[ind].style.color = col;
		}
	else {
		document.getElementById(ind).style.color = col;
		}
	
	}
function color_o(x) {
	if(document.all) {
		document.all[x].style.color ="#ff0000";
		}
	else {
		document.getElementById(x).style.color ="#ff0000";
		}
	}
	
function colore(x) {
	document.all[x].style.color ="#0000ff";
	}
	
function make_win(doc,name,params) {
	var win = window.open(doc,name,params);
	win.document.close();
	}
	

function show_the_way(index) {
	if(document.all) {
		document.all[index].style.visibility = "visible";
		}
	else {
		document.getElementById(index).style.visibility = "visible";
		}
	}
	
function hide_the_way(index) {
	if(document.all) {
		document.all[index].style.visibility = "hidden";
		}
	else {
		document.getElementById(index).style.visibility = "hidden";
		}
	}


function printer(file) {
	var win = window.open("shop/printpreview/"+file,"printwindow","left=50,top=50,height=600,width=870,scrollbars=yes,resizable=yes");
	win.document.close();
	}
	
function slide(dir) {
	var win = window.open("slide.php?dir="+dir,"slide","left=150,top=150,toolbar=no,status=no,height=600,width=870,scrollbars=no,resizable=yes");
	win.focus();
	}
