﻿//////////////////////////////////////////////////////////////////////////////
// popper.js - 
// @author: Jeff Lambert
//  Creates a popup window.

function popper(href, w, h, e) {
	if(e)
		e = "," + e;

    w = window.open(href, 'name', 'height=' + h + ',width=' + w + ',left=300,top=300,resizable=1' + e);
    w.focus();
    return false;
}
