function big(url) {
	newwindow=window.open(url,'popup','height=650,width=750,toolbar=yes,scrollbars=yes,resizable=yes');
	if (window.focus) {newwindow.focus()}
	return false;
}

function wide(url) {
		newwindow=window.open(url,'popup','width=1050,height=650,toolbar=yes,scrollbars=yes,resizable=yes')
		if (window.focus) {newwindow.focus()}
		return false;
}


function narrow(url) {
	newwindow=window.open(url,'popup','width=750,height=650,toolbar=yes,scrollbars=yes,resizable=yes')
	if (window.focus) {newwindow.focus()}
	return false;
}

function popAll(toWhere, w, h){
	var options = 'width=' + w + ', height=' + h + 'toolbar=yes,scrollbars=yes,resizable=yes';
	var winX = window.open(toWhere, "NewWin", options);
    }

function home(url) {
    newwindow=window.open(url,'home','width=950,height=700,toolbar=yes,scrollbars=yes,resiable=yes')
		if (window.focus) {newwindow.focus()}
		return false;
}
