// Author: David Mimms (dmimms@avantfax.com)
// Date: Feb 2006

var newwindow;

function mkcrwin(url) {
        newwindow=window.open(url,'notes','scrollbars=1,height=475,width=750,resizable=yes');
        if (window.focus) {newwindow.focus()}
}

function mkwin(url) {
	newwindow=window.open(url,'assoc','height=230,width=550,resizable=yes');
	if (window.focus) {newwindow.focus()}
}

function mknoteswin(url) {
        newwindow=window.open(url,'notes','height=210,width=500,resizable=yes');
        if (window.focus) {newwindow.focus()}
}

function mkpdfwin(url) {
	newwindow=window.open(url,'_blank','height=600,width=800,resizable=yes');
	if (window.focus) {newwindow.focus()}
}

function mkprintingwin(url) {
	newwindow=window.open(url,'_blank',"scrollbars=1,height=600,width=800,resizable=1");
	if (window.focus) {newwindow.focus()}
}

function newfax () {
	alert ('New FAX');
}