/* Window */

function centerWindowOnScreen() {
	if (navigator.appName=="Microsoft Internet Explorer") {
		ty = document.body.clientHeight; tx = document.body.clientWidth;}
	else {
		ty = window.innerHeight; tx = window.innerWidth;}
	x = screen.availWidth/2 - tx/2
	y = screen.availHeight/2 - ty/2
	self.moveTo(x,y);
}

function new_browser(src, name, w, h) { //v1.0
	size=", width="+w+", height="+h
	var browser = window.open(src, name, "scrollbars=yes, resizable=yes, toolbar=no, titlebar=no, status=yes, menubar=no, location=no, directories=no" + size)
}

function new_window(src, name, w, h) { //v1.0
	size=", width="+w+", height="+h
	var browser = window.open(src, name, "scrollbars=no, resizable=no, toolbar=no, titlebar=no, status=no, menubar=no, location=no, directories=no" + size)
}

function zoomMe(o) {
	var win = window.open('zoom.asp?image=' + o, 'zoom', 'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,titlebar=no,width='+ 640 +',height='+ 480);
}

function openPage(id) {
	//new_window('fiches.asp?IDPAGE=' + id, 'fiche', 720, 500)
}

function openFiche(id) {
	new_window('fiches.asp?IDPAGE=' + id, 'fiche', 624, 700)
}

function Visite_virtuelle() {
	new_window('visionneuse.asp', 'visionneuse', 500, 500)
}