function sketchBook (url) {
		window.open(url, 'sketchBook','height=500,width=700,toolbar=no,menubar=no,resizable=no,scrollbars=no');
}

function genericWindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}

function clientsWindow (url) {
	window.open(url, 'clients','width=250,height=480,toolbar=no,menubar=no,resizable=no,scrollbars=yes');
}

function projectWindow (url) {
	window.open(url, 'projectWindow','width=350,height=550,toolbar=yes,menubar=no,resizable=yes,scrollbars=yes');
}