function setPrintCSS(isPrint) {
	if (document.getElementsByTagName)
		x = document.getElementsByTagName('link');
	else if (document.all)
		x = document.all.tags('link');
	else {
		alert('Увы, но этот скрипт не работает в вашем браузере');
		return;
	}
	for (var i = 0; i < x.length; i++) {
		if (x[i].title == 'printview') x[i].disabled = !isPrint;
		if (x[i].title == 'screenview') x[i].disabled = isPrint;
	}
	self.scrollTo(0, 0);
}

function checkURL() {
	if (document.location.hash == '#print') setPrintCSS(true);
}

function openVirtualWin() {
	msgWindow = open("showvirtual.html", "VirtualTourWindow", "width=805, height=580, status=no, toolbar=no, menubar=no, scrollbars=no");
}

function showGallery(GalleryURL) {
	GalleryWin = window.open(GalleryURL, "GalleryWindow", "width=1000, height=450, status=no, resizeable=no, scrollbars=no, menubar=no");
}
