/* 

#####################################################

Javascripts for www.ericfalkner.com

FileName:   site.js
Author:	    Eric Falkner
Pub Date:   1.13.10

#####################################################

*/

function gen_pop(h,w,tb,mb,sb,loc) {
    var settings = 'height=' + h + ',';
    settings += 'width=' + w + ',';
    settings += 'toolbar=' + tb + ',';
    settings += 'menubar=' + mb + ',';
    settings += 'scrollbars=' + sb + ',';
    settings += 'location=' + loc + ',';
	settings += 'directories=no,status=yes,resizable=yes,left=0,top=0,';
	window.open('','popup_win',settings)
}

function showhide(div) {
	var obj = document.getElementById(div);
	if(obj.style.display == 'none') { 
		obj.style.display = 'block'; 
	} else { obj.style.display = 'none'; }
}
