<!--

//open site credits
function credits() {

	//get screen dimensions
	if (self.screen) {
		sw = self.screen.width;
		sh = self.screen.height;
	} else return;
	
	//set props
	w=200;
	h=100;
	url='http://briantdreiling.com/legal/externalcredit.html';
	title = 'Credits';
	winProperties = 'height='+h+',width='+w+',toolbar=no,location=no,scrollbars=auto,titlebar=yes,menubar=no,resizable=yes,status=no';
	
	//open and move
	win = window.open(url,title, winProperties);
	win.moveTo((sw-w)/2,(sh-h)/2);

}


//-->
