﻿function popup(url, type) {

	if (type == 'staff' ){
		width = 697;
		height = 463;
		
		w_h = true;
	}
	else if (type == 'map'){
		height = 495;
		width = 725;
		
		w_h = true;
	}
	
	else {
		w_h = false;
	}
	
	if (w_h) {
		new_window=window.open(url,'_new','width=' + width + ', height=' + height + ', toolbar=0, status=0, menubar=0, scrollbars=0, resizable=0');
	}
	else {
		new_window=window.open(url);	
	}
	
	if (window.focus) {new_window.focus()}
	return false;
}



