
var popupWin;

function openFPWindow(URL,name,attrib) {
	popupWin = window.open(URL,name,attrib);
	popupWin.focus();
}

// example of the openFPWindow Function below:
// <a href="javascript:openFPWindow('URL here','title of window here','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=590,height=420')">
