// JavaScript Document

function make_new_win(width,height) {
	//var width = 730;
	//var height = 356;
	var xoffset = screen.availWidth/2 - width/2;
	var yoffset = screen.availHeight/2 - height/2;
	new_win = window.open('stenberg_viewer.html','download','height='+height+',width='+width+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,left='+ xoffset + ',top='+ yoffset);
}

function MM_jumpMenu(floorplan,selObj,restore){ //v3.0
  top.frames['floorplan'].location=selObj.options[selObj.selectedIndex].value;
  if (restore) selObj.selectedIndex=0;
}

function make_new_bigwin(width,height) {
	//var width = 730;
	//var height = 356;
	var xoffset = screen.availWidth/2 - width/2;
	var yoffset = screen.availHeight/2 - height/2;
	new_win = window.open('apple.com/quicktime/download.html','download','height='+height+',width='+width+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,left='+ xoffset + ',top='+ yoffset);
}