
function open_infopack_window()
{
	var newwindow;

	newwindow=window.open('assets/MPCInfoPack.pdf','infopack','height='+604+',resizable=false,toolbar=false,menubar=false,location=false')
    if (window.focus) { newwindow.focus() }
}

function open_gallery_window()
{
	var popW = 840, popH = 631;

	var w,h;

	if (document.all || document.layers) {
	   w = screen.availWidth;
	   h = screen.availHeight;
	}	
		
	var leftPos = (w-popW)/2, topPos = (h-popH)/2;
	
    newwindow=window.open('gallery.htm','gallery','top='+topPos+',left='+leftPos+',width='+popW+',height='+popH+',resizable=false,toolbar=false,menubar=false,location=false');
    if (window.focus) { newwindow.focus() }
}